在Phpmyadmin中更改Mysql Server的端口

前端之家收集整理的这篇文章主要介绍了在Phpmyadmin中更改Mysql Server的端口前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我在我的服务器上运行了两个MySql(5.1.73-1-log)实例,一个在端口3306上(默认),一个在端口3307上.现在,我想更改PHPMyAdmin(3.3.7deb7)以获取第二个实例,在3307,而不是默认的.
因此,我将以下行添加到config.inc.PHP

    $cfg['Servers'][$i]['port'] = '3307';

现在,虽然PHPMyAdmin说localhost:3307(看截图),但它访问的数据库仍然是来自默认端口上运行的实例的数据库.

如何更改设置以使端口更改成为现实?

最佳答案
PhpMyAdmin documentation

If you use localhost as the hostname,MysqL ignores this port number and connects with the socket,so if you want to connect to a port different from the default port,use 127.0.0.1 or the real hostname in $cfg['Servers'][$i]['host'].

原文链接:https://www.f2er.com/mysql/433888.html

猜你在找的MySQL相关文章