centos7下安装phpMyAdmin的教程

发表时间
评论 没有

Yum安装可能会有些问题,这里使用源代码安装

  1. 官网下载phpMyAdmin压缩包
wget -c https://files.phpmyadmin.net/phpMyAdmin/5.1.1/phpMyAdmin-5.1.1-all-languages.tar.gz
  1. 解压缩到/var/www/html/
tar -zxvf phpMyAdmin-5.1.1-all-languages.tar.gz -C /var/www/html/
  1. 重命名
cd /var/www/html/
mv phpMyAdmin-5.1.1-all-languages phpMyAdmin

这一步一般都可以正常通过localhost/phpMyAdmin访问了,但是有时候总会出现些其他问题。

  1. 进入到phpMyAdmin安装目录下复制phpmyadmin的简单配置文件config.sample.inc.php,作为默认配置文件config.inc.php
    复制文件
cp config.sample.inc.php config.inc.php

编辑配置文件

vim config.inc.php

配置文件现在需要一个短语密码,找到

$cfg['blowfish_secret'] = ''; //这里随意添加32个字符,太短会有错误提示。
$cfg['Servers'][$i]['auth_type'] = 'cookie'; //这里默认就好
$cfg['Servers'][$i]['host'] = 'localhost'; //这里可以改为自己的ip地址或者域名,不改也没关系
  1. 如果出现错误提示
    变量 $cfg[‘TempDir’] (./tmp/)无法访问。phpMyAdmin无法缓存模板文件,所以会运行缓慢。
    在phpMyAdmin目录下新建tmp文件夹
mkdir tmp
chmod 777 tmp
  1. 可能会提示缺少一些扩展程序
    安装php链接数据库的扩展程序包
yum install php-mysql

安装支持多字节字符串扩展的程序包

yum install php-mbstring -y

安装支持多加密扩展的程序包

yum install php-mcrypt –y

注意:如果是Openlitespeed这里可能会有不同

  1. 其他电脑访问需要开启80端口或关闭防火墙
    开启80端口
firewall-cmd --zone=public --add-port=80/tcp --permanent
//--zone作用域,--add-port=80/tcp添加端口/协议,--permanent永久生效

重启防火墙

systemctl restart firewalld

或者干脆直接关闭防火墙
查看防火墙状态

systemctl status firewalld

停止防火墙

systemctl stop firewalld

关闭开启启动防火墙

systemctl disable firewalld
  1. 如果出现Forbidden提示没有权限访问,可能是被selinux阻止了
    查看SELinux是否运行
gettenforce

如果是
enforcing //强制模式,会限制domain/type permissive //宽容模式,会有警告但不限制domain/type disabled //关闭状态,没有运行
settenforce 0 //转换成宽容模式,相当于临时关闭SELinuxx settenforce 1 //转换成强制模式
设置SELINUX=disables 可以设置开机不启动

vim /etc/selinux/config

作者
分类 网站建设, 电脑网络

评论

本文评论功能已关闭。

← 较早的 较新的 →

相关文章