SQL Server 和 Web Server 是否需要 SSL 证书?
我目前正在用 C# 开发一个网站,它需要向远程 SQL Server 发送请求。 我需要加密从客户端到 Web 服务器和 SQL Server 的所有通信。
SQL Server当前被另一个Windows应用程序在本地使用,因此SQL Server正在本地和远程使用。
所以我关心的是我是否需要为两台服务器安装证书?如果是的话,windows应用程序和sql server之间会存在连接问题吗?
谢谢
I am currently developing a website in C#, It requires to send requests to remote SQL Server.
I need to encrypt any communications from the client to the web server and to the SQL Server.
The SQL Server is currently used locally by another windows application, so the SQL server is being used locally and remotely.
So my concern is do I need to install cert for both servers ? If so will there be any connection problem between windows application and sql server ?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你只需要你的sql服务器上有一个证书
在 Web 服务器上的连接字符串中使用 encypt=yes 选项。
you would only need a certificate on your sql server
use the encypt=yes option in your connection string on the web server.