phpMyAdmin是最流行的基於Web的客戶端,用於管理MySQL/MariaDB伺服器。 PHPMyAdmin用PHP程式語言編寫。 它提供了使用者友好的Web介面來訪問和管理資料庫。 為了使廣泛使用的人群容易使用,phpMyAdmin被翻譯成72種語言,並支援LTR(從左到右)和RTL(從右到左)語言。 本文將幫助您在CentOS / RedHat系統上安裝phpMyAdmin。
前提條件為了使用PHPMyAdmin,您必須在系統上安裝PHP、MySQL和Apache。 另外,您需要在PHP配置中啟用PHP-MySQL或PHP-MySQLi模組。 對於當前版本的PHPMyAdmin 5.0.4,要求如下。
PHP >= 7.1MySQL/MariaDB >= 5.5第一步:啟用Remi庫phpMyAdmin最新更新的軟體包可在Remi儲存庫中獲得。 使用以下命令將其安裝在系統中:
### CentOS/RHEL 7 #### rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-7.rpm### CentOS/RHEL 6 #### rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-6.rpm
第二步:在CentOS上安裝PhpMyAdmin
在系統上啟用Remi庫後,讓我們開始使用yum軟體包管理器安裝phpMyAdmin。 所有依賴項將自動安裝:
# yum --enablerepo=remi,remi-test install phpMyAdmin
第三步: 配置PhpMyAdmin
phpMyAdmin預設情況下僅允許從本地主機訪問。 如果要使其可從遠端計算機訪問,請編輯phpMyAdmin的Apache配置檔案:
$ sudo vim /etc/httpd/conf.d/phpMyAdmin.conf
現檢視以下內容,將Require local 改為 Require all granted, 這就不限制僅從本地訪問,並且可以從網路訪問phpMyAdmin:
Alias /phpMyAdmin /usr/share/phpMyAdminAlias /phpmyadmin /usr/share/phpMyAdmin <Directory /usr/share/phpMyAdmin/> AddDefaultCharset UTF-8 <IfModule mod_authz_core.c> # Apache 2.4 Require all granted </IfModule> <IfModule !mod_authz_core.c> # Apache 2.2 Order Deny,Allow Deny from All Allow from 127.0.0.1 Allow from ::1 </IfModule></Directory>
更新phpMyAdmin Apache配置檔案後,重新啟動Apache服務以重新載入新設定:
# service httpd restart
之後透過訪問 您的域名/phpMyAdmin/ 即可登陸管理phpMyAdmin
最新評論