如何在 XAMPP 下配置 MySQL 以使用 IPv6
我有 XAMPP v.3.1.0,出于测试目的,我需要使用 IPv6 格式连接到 MySQL 数据库.
I have XAMPP v.3.1.0 and for testing purposes I need to connect to the MySQL database using IPv6 format.
如何配置 MySQL?
How to configure MySQL?
推荐答案
- 找到我的.ini
- 更改/取消注释
bind-address = :: # for ipv6
- 启动mysql
- 如果成功连接,请使用命令
mysql -h ::1
在控制台中检查 - Locate my.ini
- Change / uncomment
bind-address = :: # for ipv6
- Start mysql
- check in the console with the command
mysql -h ::1
if you manage to connect - 5.1 MySQL 服务器 :: 5.1.9 IPv6 支持
- MySQL --bind-address=addr
其他资源:
相关文章