2-部署phpmyadmin



软件下载地址:https://files.phpmyadmin.net/phpMyAdmin/4.5.5.1/phpMyAdmin-4.5.5.1-all-languages.zip

解压软件
[root@localhost pack]# unzip phpMyAdmin-4.5.5.1-all-languages.zip

将解压文件移至Apache的网页根目录下
[root@localhost pack]# cp phpMyAdmin-4.5.5.1-all-languages /usr/local/apache2/htdocs/ -r
修改配置文件/usr/local/apache2/htdocs/phpmyadmin/libraries/config.default.php
$cfg['PmaAbsoluteUri'] = 'http://192.168.1.20/phpmyadmin';
$cfg['Servers'][$i]['host'] = 'localhost';
$cfg['Servers'][$i]['auth_type'] = 'cookie';
$cfg['Servers'][$i]
$cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['password'] = '';
$cfg['DefaultLang'] = 'zh';


访问网页



下面的就是主界面





原文地址:https://www.cnblogs.com/endmoon/p/5595382.html