How to configure SSL on an instance of SQL Server to allow dedicated users to remotely access it?
Posted
by
The Good Boy
on Server Fault
See other posts from Server Fault
or by The Good Boy
Published on 2011-03-16T03:31:33Z
Indexed on
2011/03/16
8:11 UTC
Read the original article
Hit count: 415
I have configured the instance of SQL Server to allow dedicated users to access it remotely.
Connection string Data Source = 192.168.1.2,1433\sqlexpress;etc...
has been tested and works.
However, I have not configured the SSL to secure the communication.
How to configure SSL on an instance of SQL Server to allow dedicated users to remotely access it?
edit 1
The dedicated user will administer its database using Sql Server Management Studio. What I want to do is to secure the communication when he/she administers the database using Sql Server Management Studio.
© Server Fault or respective owner