phpMyAdmin 是一個以PHP為基礎,以Web-Base方式架構在網站主機上的MySQL的 數據庫管理工具,讓管理者可用Web接口管理MySQL數據庫。
系統環境:CentOS7
安裝過程
1. 安裝需要的軟件包
# yum install httpd mariadb mariadb-server php php-mbstring php-mysql -y
2. 解壓縮phpmyadmin軟件包並拷貝到apache的根目錄下
# tar zxvf phpmyadmin-xxx
# mv phpmyadmin-xxx /var/www/html/phpmyadmin
3. 編輯apache的配置文件,加載php模塊,使其可以解析php程序
# vim /etc/httpd/conf.d/php.conf
add an line: Loadmodule php5_module /usr/lib64/httpd/modules/libphp5.so
4. 編輯phpmyadmin配置文件,配置訪問路徑及mariadb用戶名密碼等信息
# cp /var/www/html/phpmyadmin/libraries/config.default.php
/var/www/html/phpmyadmin/config.inc.php
# vim /var/www/html/phpmyadmin/config.inc.php
$cfg['PmaAbsoluteUri'] = ''; ==>
$cfg['PmaAbsoluteUri'] = 'http://localhost/phpmyadmin/';
$cfg['blowfish_secret'] = ''; ==>
$cfg['blowfish_secret'] = 'your secret password';
$cfg['Servers'][$i]['auth_type'] = 'config'; ==>
$cfg['Servers'][$i]['auth_type'] = 'cookie';
$cfg['Servers'][$i]['user'] = ''; ==> $cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['password'] = ''; ==>
$cfg['Servers'][$i]['password'] = 'your mysql password';
5. 啟動mariadb程序
# systemctl start mariadb
6. 進行mariadb數據庫初始化
# mysql_secure_installation
7. 啟動Apache程序
# systemctl start httpd
測試:
1. 打開浏覽器,輸入以下網址
web site: http://localhost/phpmyadmin
輸入mysql的用戶名 and 密碼即可進行mysql管理。
總結:
該程序功能非常強大,但是不建議初學數據庫者使用該工具,還是使用命令行去手動的寫SQL語句去學習的比較好!如果一開始就使用該工具,不利於對本質的學習!如果是開發人員,不想學數據庫,可以使用該工具進行操作,效率還是蠻高的!