Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我一般是 SQL 新手,在配置我的服务器时遇到了麻烦。
背景:我有一个在 unix 上运行的 MySQL 服务器。-h localhost我使用我的 dbhost 类型格式化了一个数据库。我现在正在查询数据库,它在本地运行良好,但我需要能够从不同的机器查询数据库。
-h localhost
有人可以告诉我要为我的 SQL 服务器获取 IP 地址需要做什么,以便我可以远程连接到它吗?
编辑您的配置文件。即:/etc/mysql/my.cnf
找到绑定地址条目:
bind-address = 127.0.0.1
并通过在其前面添加一个哈希将其注释掉:
#bind-address = 127.0.0.1
重新启动 MySQL,你就准备好了。