# 在mysql服务器上安装httpd并启动
[root@mysql1 ~]# yum install -y httpd php php-mysqlnd php-xml php-json
[root@mysql1 ~]# systemctl enable httpd --now
# 部署phpMyAdmin,通过web页面管理mysql数据库
[root@mysql1 ~]#yum -y install unzip wget
[root@mysql1 ~]#unzip phpMyAdmin-2.11.11-all-languages.zip
[root@mysql1 ~]# wget https://files.phpmyadmin.net/phpMyAdmin/2.11.11/phpMyAdmin-2.11.11-all-languages.zip
[root@mysql1 ~]# tar xf phpMyAdmin-2.11.11-all-languages.tar.gz
[root@mysql1 ~]# mv phpMyAdmin-2.11.11-all-languages /var/www/html/mysqladmin #把安装包装到网页目录下
[root@mysql1 ~]# cd /var/www/html/mysqladmin
[root@mysql1 mysqladmin]# cp config.sample.inc.php config.inc.php # 创建配置文件
[root@mysql1 mysqladmin]# vim config.inc.php
$cfg['blowfish_secret'] = 'tedu.cn'; # 随便加一些字符