centos7 安裝phpmyadmin

centos7 安裝phpmyadmin

1、先安裝epel,不然安裝pgpmyadmin時會出現找不到包。

yum install epel-release
rpm -ivh http://rpms.famillecollet.com/enterprise/remi-release-7.rpm
2、
sudo yum install phpmyadmin
3、修改配置文件
sudo vi /etc/httpd/conf.d/phpMyAdmin.conf

<Directory /usr/share/phpMyAdmin/>
AddDefaultCharset UTF-8

<IfModule mod_authz_core.c>

Apache 2.4

 <RequireAny>
  # Require ip 127.0.0.1  #註釋掉
  # Require ip ::1   #註釋掉
  Require all granted   #新添加
 </RequireAny>

</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>

<Directory /usr/share/phpMyAdmin/setup/>
<IfModule mod_authz_core.c>

Apache 2.4

 <RequireAny>
  #Require ip 127.0.0.1  #註釋掉
  #Require ip ::1   #註釋掉
  Require all granted   #新添加
 </RequireAny>

</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>

4、重啓httpd使改動生效。
sudo systemctl restart httpd
5、測試
ip/phpmyadmin

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章