您好,登錄后才能下訂單哦!
這篇文章主要介紹了Centos7中安裝phpmyadmin的方法,具有一定借鑒價值,需要的朋友可以參考下。下面就和我一起來看看Centos7安裝phpmyadmin的簡單方法吧。
phpmyadmin.yimitest.com 192.168.20.159
yum install epel-release -y
yum install php -y
yum install phpmyadmin -y
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
Allow from 0.0.0.0
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
Allow from 0.0.0.0
Allow from 127.0.0.1
Allow from ::1
</IfModule>
</Directory>
vi /etc/phpMyAdmin/config.inc.php
$cfg['AllowArbitraryServer'] = true; //添加可訪問任意mysql服務器 http://192.168.20.160/phpmyadmin
關于Centos7中安裝phpmyadmin的方法就分享到這里了,希望以上內容可以對大家有一定的參考價值,可以學以致用。如果喜歡本篇文章,不妨把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。