我在32位Windows 7上安装了Xampp。当我尝试在XAMPP控制面板(v3.2.1)中启动MySql时,出现以下消息,而MySql无法启动。23:02:03 [mysql] Problem detected!23:02:03 [mysql] Port 3306 in use by ""C:\Program Files\MySQL\MySQL Server 5.1\bin\mysqld" --defaults-file="C:\Program Files\MySQL\MySQL Server 5.1\my.ini" MySQL"!23:02:03 [mysql] MySQL WILL NOT start without the configured ports free!23:02:03 [mysql] You need to uninstall/disable/reconfigure the blocking application23:02:03 [mysql] or reconfigure MySQL and the Control Panel to listen on a different port23:02:03 [mysql] Attempting to start MySQL service...此处报告了类似的问题,但没有有效的答案。当我尝试禁用MySql进行安装时,结果是我什至没有选择甚至无法运行它。我是Xampp的新手,不知道在哪里寻找解决问题的方法我需要用PHP运行Apache和MySql。
3 回答
白衣染霜花
TA贡献1796条经验 获得超10个赞
您有两个使用相同端口的mysql版本。3306.更改端口。
如何更改xampp的mysql端口?
停止xampp服务器(如果已在运行)。
在xampp / mysql / bin / my.ini中将值编辑为“ port”
码:
Password = your_password
port = 3306 ---> 3307
socket = "/ xampp / mysql / mysql.sock"
还有这里
码:
The MySQL server
[ mysqld ]
port = 3306 ---> 3307
socket = "/ xampp / mysql / mysql.sock"
2. Start mysql service
繁星淼淼
TA贡献1775条经验 获得超11个赞
您已经在此计算机上安装了使用端口3306的mySQL版本。进入最新my.ini
文件,并将端口更改为3307
。重新启动mySQL服务,然后查看它是否启动。
您还需要将xampp \ php \ php.ini中的端口3306更改为3307
添加回答
举报
0/150
提交
取消