##############################
#mysql的图形管理工具phpmyadmin #
##############################

上篇博客中,我们知道了mariadb 但是操作不方便,这篇将所有的命令用一个图形化界面简化

前提,在本机上安装mariadb,启动

yum install -y httpd  安装httpd
systemctl start httpd

tar jxf phpMyAdmin-3.4.0-all-languages.tar.bz2  -C /var/www/html
mv phpMyAdmin-3.4.0-all-languages/ mysqladmin
cp config.sample.inc.php config.inc.php
vim config.inc.php
~~~~~~~~
$cfg['blowfish_secret'] = 'ba17c1ec07d65003';
~~~~~~~~
yum install -y php-mysql.x86_64  php
systemctl restart httpd
systemctl stop firewalld

测试:http://172.25.254.120/mysqladmin
出现图形数据库登陆面。