怎么修改phpMyAdmin访问的端口号?

如题所述

你必须修改apache服务器的访问端口。可以在httpd.conf修改监听端口。具体的修改方法如下:

温馨提示:内容为网友见解,仅供参考
第1个回答  2019-12-02
如果你要改访问的端口,你必须修改apache服务器的访问端口。可以在httpd.conf修改监听端口。具体的修改方法如下:
#
# Listen: Allows you to bind Apache to specific IP addresses and/or
# ports, instead of the default. See also the <VirtualHost>
# directive.
#
# Change this to Listen on specific IP addresses as shown below to
# prevent Apache from glomming onto all bound IP addresses.
#
#Listen 12.34.56.78:80
Listen 80 #修改服务器端口
第2个回答  2017-12-30
只要修改phpmyadmin目录下libraries下配置文件config.default.php。
$cfg['Servers'][$i]['port'] = ''
这句注释表明这里空表示使用的是MySQL的默认端口3306。只要把它改为:
$cfg['Servers'][$i]['port'] = '3307';
相似回答