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.
当我从 mysql bin 文件夹命令提示符访问 MySql 时,它工作正常。但是当使用 cmd 访问 localhost:8080 时,它无法正常工作。我为此使用此命令:
C:\wamp\bin\mysql\mysql5.6.12\bin> mysql -u root -p -h localhost:8080
mysql 真的在监听端口8080吗?不应该3306吗?
8080
3306
查看my.ini并检查该[mysqld]部分中的定义:
my.ini
[mysqld]
[mysqld] ; ... port = 3306 ; ...
您需要将 MySQL 默认端口 3306 更改为 8080。找到查找 MySQL 配置文件,一般是“my.ini”而不是编辑该行:
[mysqld] port = 3306
至
[mysqld] port = 8080
然后重启MySQL服务,就完成了。