Release Notes¶
🚀 3.2.0
18 Aug 2021🎁 New Features
Tenant Management for lexbizz and Acumatica Application.
Send Error Report on failure.
Preconfigured Demo Data is available for Production Versions (for versions higher than 7.004).
✨ Improvements
Remember last selected Database Server name and Application Location.
Added new Validations for Application Installation.
Improved Installation Progress logging.
Improved Error Messages displayed after CRM authentication.
🐞 Bug Fixes
PortalSiteID is not set for an installation of lexbizz Application with Portal causing error on SP800000 screen.
User was not able to login to Acumatica Portal on a local instance using non-admin user.
Post Installation Instructions¶
lexbizz DevOps Tool will install a Windows Service on the machine. As the service is running under Local System Account, this account need complete access to your local SQL Server Instance.
In case of an lexbizz DevOps Tool update, the Local System Account is granted full access to your local SQL Server.
In case you are installing lexbizz DevOps tool for the first time and do not have any SQL Server installation, then please execute the following SQL Script manually inside SQL Management Studio
English
1IF NOT EXISTS (SELECT name FROM sys.server_principals where name ='NT AUTHORITY\SYSTEM')
2BEGIN
3 CREATE LOGIN [NT AUTHORITY\SYSTEM] FROM WINDOWS;
4END
5
6ALTER LOGIN [NT AUTHORITY\SYSTEM] with DEFAULT_DATABASE=[master]
7GO
8
9EXEC sp_addsrvrolemember 'NT AUTHORITY\SYSTEM', 'sysadmin';
German
1IF NOT EXISTS (SELECT name FROM sys.server_principals where name ='NT-AUTORITÄT\SYSTEM')
2BEGIN
3 CREATE LOGIN [NT-AUTORITÄT\SYSTEM] FROM WINDOWS;
4END
5
6ALTER LOGIN [NT-AUTORITÄT\SYSTEM] with DEFAULT_DATABASE=[master]
7GO
8
9EXEC sp_addsrvrolemember 'NT-AUTORITÄT\SYSTEM', 'sysadmin';
For other languages
Please replace ‘[NT AUTHORITYSYSTEM]’ in the first script with the following values and execute the SQL Script.
French - AUTORITE NT\SYSTEM
Russian - NT AUTHORITY\СИСТЕМА