31-05-21 03:05 PM
Also, when I checked my event logs I got this,
Application: dotnet.exe
CoreCLR Version: 4.700.20.11803
.NET Core Version: 3.1.3
Description: The process was terminated due to an unhandled exception.
Exception Info: Microsoft.Data.SqlClient.SqlException (0x80131904): CREATE DATABASE permission denied in database 'master'.
Application '/LM/W3SVC/2/ROOT' with physical root 'C:\Program Files (x86)\Blue Prism\Authentication Server\' failed to start process with commandline 'dotnet .\ImsServer.Web.dll' at stage 'PostStartCheck', ErrorCode = '0x8027025b', assigned port 16238, retryCounter '1'.
Please help me solve this issue.
Thanks,
Ansar
01-06-21 02:10 AM
The user must be a member of dbcreator
server role for user to have enough permissions to create a database.
You can execute the following statement to make a user member of dbcreator
server role.
EXEC master..sp_addsrvrolemember @loginame = N'Shubhankar', @rolename = N'dbcreator'
GO
Members of sysadmin
role are by default members of dbcreator
server role therefore they can create databases too.
Hope this helps.
01-06-21 04:58 AM
Hi Bruce,
I have already verified, my user has all the necessary permissions, still I am unable to access.
Thanks,
Ansar
01-06-21 05:35 AM
01-06-21 04:29 PM
02-06-21 12:07 AM
02-06-21 04:41 AM
Hi Bruce,
I did the same but there is pre-requisite for App Server.
Can't this be done in standalone deployment without app server.?
Thanks,
Ansar
02-06-21 07:03 AM
02-06-21 03:55 PM
03-06-21 12:11 AM