phpMyAdmin 是一個用PHP編寫的軟體工具,可以通過web方式控制和操作MySQL資料庫。通過phpMyAdmin 可以完全對資料庫進行操作,例如建立、複製和刪除數據等等。如果使用合適的工具,MySQL資料庫的管理就會變得相當簡單。應用 MySQL 命令行方式需要對 MySQL 知識非常熟悉 ...
phpMyAdmin 是一個用PHP編寫的軟體工具,可以通過web方式控制和操作MySQL資料庫。通過phpMyAdmin 可以完全對資料庫進行操作,例如建立、複製和刪除數據等等。如果使用合適的工具,MySQL資料庫的管理就會變得相當簡單。應用 MySQL 命令行方式需要對 MySQL 知識非常熟悉,對SQL語言也是同樣的道理。不僅如此,如果資料庫的訪問量很大,列表中數據的讀取就會相當困難。
當前出現很多GUI MySQL客戶程式,其中最為出色的是基於 Web 的phpMyAdmin 工具。這是一種 MySQL資料庫前臺的基於PHP的工具。
PhpMyAdmin 的缺點是必須安裝在 Web 伺服器中,所以如果沒有合適的訪問許可權,其它用戶有可能損害到 SQL 數據。
安裝環境
在同一臺主機上部署LAMP
Linux( CentOS 7.3 ) 、Apache(httpd2.4)、MariaDB(5.5)、PHP(5.4)
主機IP:192.168.29.110
源碼包下載
在官網http://www.phpmyadmin.net/下載phpMyAdmin源碼包phpMyAdmin-4.0.10.20-all-languages.tar
1 安裝軟體
(1)安裝LAMP
[root@centos7 ~]# yum install httpd php mariadb-server –y
(2)安裝php鏈接資料庫的擴展程式包
[root@centos7 ~]# yum install php-mysql
(3)安裝支持多位元組字元串擴展的程式包
[root@centos7 ~]# yum install php-mbstring -y
(4)安裝支持多加密擴展的程式包
[root@centos7 ~]# yum install php-mcrypt –y
2 phpmyadmin配置
(1)解壓文件
解壓phpMyAdmin-4.0.10.20-all-languages.tar 到apache的DocumentRoot目錄(/var/www/html)中
[root@centos7 ~]# tar -xf phpMyAdmin-4.0.10.20-all-languages.tar.gz -C /var/www/html/
(2)複製phpmyadmin的簡單配置文件config.sample.inc.php,作為預設配置文件
[root@centos7 ~]# cp –a /var/www/html/phpMyAdmin-4.0.10.20-all-languages/config.sample.inc.php /var/www/html/phpMyAdmin-4.0.10.20-all-languages/config.inc.php
(3)編輯配置文件config.inc.php
[root@centos7 ~]# vim /var/www/html/phpMyAdmin-4.0.10.20-all-languages/config.inc.php
(4)創建軟鏈接
[root@centos7 ~]# ln -s /var/www/html/phpMyAdmin-4.0.10.20-all-languages/ /var/www/html/pma
3 資料庫MariaDB配置
(1)啟動資料庫服務
[root@centos7 ~]# systemctl start mariadb.service
(2)設置資料庫root密碼
[root@centos7 ~]# mysqladmin -u root password 'centos'
4啟動WEB服務
[root@centos7 ~]# systemctl start httpd.service
5 測試
(1)在瀏覽器輸入http://192.168.29.110/pma/
(2)用root用戶登錄
好了 部署完成
這是最基本的phpmyadmin部署。