WAMP中的mysql与原有mysql冲突解决办法

一个机器中有两个MySQL,因为MySQL默认使用3306端口。所以后安装的MySQL将无法运行。
如果你想两个MySQL都使用,那么需要设置新装的MySQL端口以及配置phpmyAdmin连接到MySQL的新端口;
1,打开WampServer中的MySQL配置 my.ini 可以看到下面一段

[client]
#password = your_password
port = 3306
socket = /tmp/mysql.sock
# Here follows entries for some specific programs
# The MySQL server
[wampmysqld]
port = 3306
socket = /tmp/mysql.sock
[mysqld]
port=3306

将[client] [wampmysqld] [mysqld]下面的port端口都修改成自己想要的端口比如:8806
2,修改完成后保存my.ini,并且在WampServer中重启MySQL


现在就可以正常帧听8806端口的MySQL数据库


3,现在就是需要修改phpmyadmin的配置文件,让其连接到端口为8806的MySQL数据库,打开C:\wamp\apps\phpmyadmin3.4.5\config.inc.php 文件,用记事本打开查找下面几个部分并修改
cfg[Servers][ i][‘host’] = ‘localhost’;
cfg[Servers][ i][‘port’] = ‘8806’;
cfg[Servers][ i][‘user’] = ‘root’;
cfg[Servers][ i][‘password’] = ‘这里填写你的MySQL密码’;
cfg[Servers][ i][‘AllowNoPassword’] = true;
保存 config.inc.php 后,重启WampServer


完成第三步即可访问 phpmyadmin

你可能感兴趣的:(开发环境搭建)