❔ dotnet ef database update not working on MAC.
Hello I'm working in visual studio with .net 6, working with EF.
I'm having troubles getting my project to work. Im trying to
sudo dotnet ef database update
. I'm getting a error to error to new error 😛
The problem I'm running into are: (Errors)
- CREATE DATABASE permission denied in database 'master'
- Invalid value for key 'Trust Server Certificate'
turned on 'accept non-trusted certificates automatically in Datagrip
- Cannot authenticate using Kerberos. Ensure Kerberos has been initialized on the client with 'kinit' and a Service Principal Name has been registered for the SQL Server to allow Kerberos authentication.
ErrorCode=InternalError
My connection string:
simply just lost by now.. 😦 pls help3 Replies
Origin of the connection string was this before i tried googling and adding abunch of stuff trying to get it to work:
On this i get the Kerberos error as mentioned earlier.
Kerberos... thats an auth manager, isnt it?
Anyways, I'd focus on
CREATE DATABASE permission denied in database 'master' Invalid value for key 'Trust Server Certificate'for now. Look at your connectionstring, you are missing a
;
thats why its complaining about TrustServerCertificateWas this issue resolved? If so, run
/close
- otherwise I will mark this as stale and this post will be archived until there is new activity.