mysql安装图形化管理界面phpMyAdmin
生活随笔
收集整理的這篇文章主要介紹了
mysql安装图形化管理界面phpMyAdmin
小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
前要:安裝該圖形界面必須要有數(shù)據(jù)庫(kù)
1.安裝
?
# 在mysql服務(wù)器上安裝httpd并啟動(dòng) [root@mysql1 ~]# yum install -y httpd php php-mysqlnd php-xml php-json [root@mysql1 ~]# systemctl enable httpd --now # 部署phpMyAdmin,通過web頁(yè)面管理mysql數(shù)據(jù)庫(kù) [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 #把安裝包裝到網(wǎng)頁(yè)目錄下 [root@mysql1 ~]# cd /var/www/html/mysqladmin [root@mysql1 mysqladmin]# cp config.sample.inc.php config.inc.php # 創(chuàng)建配置文件 [root@mysql1 mysqladmin]# vim config.inc.php $cfg['blowfish_secret'] = 'tedu.cn'; # 隨便加一些字符?用戶名是:root???? 密碼是你的數(shù)據(jù)庫(kù)密碼
?
?
總結(jié)
以上是生活随笔為你收集整理的mysql安装图形化管理界面phpMyAdmin的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: mysql数据库基础(密码策略)
- 下一篇: SQL基本语句及用法