xampp - 从 LAN 内的另一台本地计算机连接到本地数据库
我正在使用 XAMPP 创建 php 项目。 我的系统是:name=con7 本地ip=192.168.1.20 另一个系统是: name=con12 和本地 ip=19.168.1.10
我想从 con7 连接到 con12 中的数据库。
我读到我们需要为尝试从不同机器连接的主机(ip)提供访问权限,例如cPanel->数据库(Linux主机的控制面板)中的访问主机。
我可以访问该系统,因为那个人(con7)负责数据输入,而我负责操作。 类似的事情。
那么如何做到这一点呢?
I am using XAMPP to create php projects.
My system is: name=con7 and local ip=192.168.1.20
Another system is: name=con12 and local ip=19.168.1.10
I want to connect to a database in con12 from con7.
I read that we need to provide access permission for the host(ip) which is trying to connect from a different machine like the Access Host in cPanel->databases (the control panel for linux hostings).
I have access to that system as that person(con7) does the data entry and me the manipulation.
some thing like that.
So how to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为了连接到远程数据库,您必须确保:
您想运行 PHP 脚本吗?在 mysql_connect() 中添加正确的凭据就足够了。如果您想使用本地 phpmyadmin 来处理数据库,您必须在 phpmyadmin-config 中添加数据库。
希望有帮助。
In order to connect to a remote database you have to make sure:
Do you want to run an PHP-script adding the correct credentials in mysql_connect() should suffice. If you want to use your local phpmyadmin to work with the database you have to add the database in the phpmyadmin-config.
Hope that helps.