yum install httpd php mariadb-server –y
搭建lamp運行環(huán)境之后安裝phpMyAdmin遇到的一些問題記錄一下
1.官網(wǎng)下載phpMyAdmin壓縮包
wget -c https://files.phpmyadmin.net/phpMyAdmin/4.9.3/phpMyAdmin-4.9.3-all-languages.tar.gz
2.解壓縮到/var/www/html/
tar -zxvf phpMyAdmin-4.9.3-all-languages.tar.gz -C /var/www/html/
3.重命名
cd /var/www/html/
mv phpMyAdmin-4.9.3-all-languages phpMyAdmin
這一步一般都可以正常通過localhost/phpMyAdmin訪問了,但是有時候總會出現(xiàn)些其他問題。
4.進入到phpMyAdmin安裝目錄下復(fù)制phpmyadmin的簡單配置文件config.sample.inc.php,作為默認配置文件config.inc.php
復(fù)制文件
cp config.sample.inc.php config.inc.php
編輯配置文件
vim config.inc.php
配置文件現(xiàn)在需要一個短語密碼,找到
$cfg['blowfish_secret'] = ''; //這里隨意添加幾個字符太短會有錯誤提示。
$cfg['Servers'][$i]['auth_type'] = 'cookie'; //這里默認就好
$cfg['Servers'][$i]['host'] = 'localhost'; //這里可以改為自己的ip地址或者域名,不改也沒關(guān)系
5.如果出現(xiàn)錯誤提示
變量 $cfg['TempDir'] (./tmp/)
無法訪問。phpMyAdmin無法緩存模板文件,所以會運行緩慢。
在phpMyAdmin目錄下新建tmp文件夾
6.可能會提示缺少一些擴展程序
安裝php鏈接數(shù)據(jù)庫的擴展程序包
yum install php-mysql
安裝支持多字節(jié)字符串擴展的程序包
yum install php-mbstring -y
安裝支持多加密擴展的程序包
yum install php-mcrypt –y
7.其他電腦訪問需要開啟80端口或關(guān)閉防火墻
開啟80端口
firewall-cmd --zone=public --add-port=80/tcp --permanent
//--zone作用域,--add-port=80/tcp添加端口/協(xié)議,--permanent永久生效
重啟防火墻
systemctl restart firewalld
或者干脆直接關(guān)閉防火墻
查看防火墻狀態(tài)
systemctl status firewalld
停止防火墻
systemctl stop firewalld
關(guān)閉開啟啟動防火墻
systemctl disable firewalld
8.如果出現(xiàn)Forbidden提示沒有權(quán)限訪問,可能是被selinux阻止了
查看SELinux是否運行
gettenforce
如果是
enforcing //強制模式,會限制domain/type permissive //寬容模式,會有警告但不限制domain/type disabled //關(guān)閉狀態(tài),沒有運行
settenforce 0 //轉(zhuǎn)換成寬容模式,相當于臨時關(guān)閉SELinuxx settenforce 1 //轉(zhuǎn)換成強制模式
設(shè)置SELINUX=disables 可以設(shè)置開機不啟動
vim /etc/selinux/config
總結(jié)
以上所述是小編給大家介紹的Linux centos7 下安裝 phpMyAdmin的教程,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復(fù)大家的。在此也非常感謝大家對腳本之家網(wǎng)站的支持!如果你覺得本文對你有幫助,歡迎轉(zhuǎn)載,煩請注明出處,謝謝!