Release Notes¶
🚀 3.1.0
23 June 2021🎁 New Features
Install lexbizz/Acumatica Application with an Portal Instance.
✨ Improvements
A seprate application pool is used for each application.
“New Version Available” Notification Popup provides a button to open “Release Notes” page.
lexbizz Application Version is shown on the Applications Screen (Application List).
🐞 Bug Fixes
None.
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
French - AUTORITE NT\SYSTEM
Russian - NT AUTHORITY\СИСТЕМА