允许客户端从不同站点连接到我的数据库,而无需查看数据库连接参数
我希望我的客户(经销商客户)能够从他们的不同站点连接到我的数据库 (mysql),而无法使用 PHP 查看具有数据库连接参数的文件。
请问我怎样才能实现这个目标?
I want my clients (reseller clients) to be able to connect to my database (mysql) from their different sites without being able to see the file that has teh db connection parameters using PHP.
Please how can I achieve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
通过使用隧道。您需要创建一个连接到 MySQL 并向请求方公开 MySQL PHP API 的脚本。之后,您的经销商使用该脚本与 MySQL 对话。这表明隧道脚本本身应该有某种密码保护,这样就不会让任何人使用您的 MySQL。
By using tunneling. You need to create a script that connects to MySQL and exposes MySQL PHP API to the requesting party. After that your resellers use that script to talk to MySQL. That indicates that the tunneling script itself should have some sort of password protection so you don't get anyone using your MySQL.
这个问题将告诉您如何加密连接字符串.
这个告诉你如何安全连接。
This question will tell you how to encrypt the connection string.
And this one tells you how to connect securely.