使用 phpmyadmin 同步两个数据库 - 什么是“socket”?对于这个操作?
我想使用 phpmyadmin (在我的服务器上)同步两个数据库(一个在我的本地主机上,第二个在我的服务器上),并且我必须填写一个名为“socket”的配置字段。
这是什么?
I want to synchronize two databases (one on my localhost and second on my server) using phpmyadmin (on my server) and I must fill in a configuration field which is named "socket".
What is this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是本地机器上的unix套接字,默认是/tmp/mysql.sock,但是你可以通过issue netstat -a | 查看它。 grep mysql 来找出您机器上运行的确切版本。
this is for a unix socket on the local machine, default is /tmp/mysql.sock, but you can check it out by issue netstat -a | grep mysql to find out the exact one running on your machine.
您可以将套接字字段留空。
如果您想确定正确的套接字,请检查您的 MySQL 配置,或者使用 mysql 命令行客户端发出 status 命令。显示的结果信息将包括所使用的套接字。
You can leave the socket field blank.
Still in case you would like to determine the correct socket, check your MySQL configuration or, using the mysql command–line client, issue the status command. Among the resulting information displayed will be the socket used.