与 ADODB 的 SSL 连接
我有一个项目即将结束,但刚刚收到 DBA 的请求,要求我们所有的连接都采用 SSL。因此,我在生成 ADODB 实例的对象中将驱动程序切换为 mysqli,但我没有看到任何创建安全连接的本机方法。
使事情变得更加困难的是,每种连接类型(读取和写入)都有一组不同的证书和密钥。
有人有什么想法吗?
I have a project we are about to wrap up, but just got a request from the DBA to make all our connections SSL. So I switched the driver to mysqli in the object that turns out ADODB instances, but I don't see any native method to create secure connections.
To make things more difficult, there is a different set of certs and keys per connection type (read and write).
Anyone have any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这个问题的答案可以在:
http://mbrisby .blogspot.com/2008/06/adodb-php-mysql-ssl.html
以下是 MySQL 客户端标志的参考:
http://forge.mysql.com/wiki/MySQL_Internals_ClientServer_Protocol
The answer to this question is found at:
http://mbrisby.blogspot.com/2008/06/adodb-php-mysql-ssl.html
Here is the reference to MySQL Client Flags:
http://forge.mysql.com/wiki/MySQL_Internals_ClientServer_Protocol
我更喜欢带有 Connect 方法和 clientFlags 属性的方法。
他们中的任何一个都会起作用。
I prefer the one with the Connect method, and clientFlags property.
Either of them would work.