Replies: 1 comment 2 replies
-
Hey, since you have SSL enabled, Trust Server Certificate checked, and a domain, can you try: connections:
MSSQL:
type: sqlserver
host: MY_HOST
instance: MY_INSTANCE
port: 1433
user: my_user
password: my_password
database: MY_DB
encrypt: 'true'
trust_server_certificate: 'true' For Windows Domain Authentication:If you want to use Windows domain authentication (since you have a domain specified), you can use: connections:
MSSQL:
type: sqlserver
host: MY_HOST
instance: MY_INSTANCE
database: MY_DB
encrypt: 'true'
trust_server_certificate: 'true'
trusted_connection: 'true'
Testing the Connection:Once configured, test with: sling conns test MSSQL |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
I have a SQL serve instance that I can connect to using a SQL client but I can seem to translate it to a sling connection string.
Is anyone familiar with SQL Server and Azure AD who can help me with this.
I have included a screenshot of the SQL client.
The tooltip for 'Domain' says 'Set domain to be logged in using Windows Integrated Authentication (NTLM)'
Beta Was this translation helpful? Give feedback.
All reactions