-
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 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.
-
|
I got this working and putting here for future poor souls. The username should be prefixed with you AD url separated by a url encoded '' so %5C<my_username> type: sqlserver |
Beta Was this translation helpful? Give feedback.

I got this working and putting here for future poor souls.
The username should be prefixed with you AD url separated by a url encoded '' so %5C<my_username>
type: sqlserver
authenticator: ntlm
database: my_db
encrypt: "true"
host: my_host
instance: my_instance_name
password: my_password
port: my_port
trust_server_certificate: "true"
user: %5C<my_username>