配置好phpMyAdmin前提是需要安装http服务器、php、phpMyAdmin
1. 安装http服务器
#安装httpd服务器
yum install httpd
#开启http服务器并设置开机启动
sudo systemctl start httpd.service
sudo systemctl enable httpd.service
2. 安装php和phpMyAdmin
#安装php
yum install php
#由于phpMyAdmin不在yum存储库中,因此您需要使用以下命令安装epel存储库
sudo yum install epel-release
##安装phpMyAdmin
sudo yum install phpMyAdmin
#重启http服务器
sudo systemctl restart httpd.service
3. 配置phpMyAdmin
在/etc/httpd/conf.d/phpMyAdmin.conf目录中
将 Require ip xxx 修改为 Require all granted,共2处需要修改,修改后文件如下
4. 访问phpMyAdmin地址
http://{IP地址}/phpmyadmin
参考资料
1.https://zhuanlan.zhihu.com/p/437122814
2.https://blog.csdn.net