Centos7.2之phpadmin安装配置

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Centos7.2之phpadmin安装配置相关的知识,希望对你有一定的参考价值。

centos7.2
lamp之phpadmin
PhpMyAdmin是一个以PHP为基础,以Web-Base方式架构在网站主机上的mysql的数据库管理工具,让管理者可用Web接口管理MySQL数据库

下载地址:https://files.phpmyadmin.net/phpMyAdmin/4.0.10.20/phpMyAdmin-4.0.10.20-all-languages.zip
注意:下载的版本要和当前的php版本和mysql版本相适应,不然不能成功。

~]# yum install httpd php php-mysql mariadb-server 安装需要的服务
~]#systemctl start httpd 启动httpd服务
~]#systemctl start mariadb 启动mysql服务
~]# ss -tnl 查看监听的端口
State Recv-Q Send-Q Local Address:Port Peer Address:Port
LISTEN 0 50 :3306 :
LISTEN 0 128 :::80 :::
:*

~]# systemctl stop firewalld 关闭防火墙
~]# systemctl disable firewalld永久关闭防火墙
~]# setenforce 0 暂时关闭selinux
~]# sed -i "s/^SELINUX\=enforcing/SELINUX\=disabled/g" /etc/selinux/config 永久关闭selinux
~]# unzip phpMyAdmin-4.7.9-all-languages.zip 解压phpmyadmin

~]# cp -a phpMyAdmin-4.7.9-all-languages /var/www/html/ 复制到指定目录
html]# ln -s phpMyAdmin-4.7.9-all-languages pma 创建软连接,方便以后升级
html]# cd pma/
pma]# cp config.sample.inc.php config.inc.php 复制配置文件

~]# tr -d ‘a-z0-9A-Z‘</dev/urandom |head -30 |md5sum
7a1e4b41291c0c74e82ef5a5f528dc82 - 生成随机字符串
pma]#vim config.inc.php 编辑配置文件
$cfg[‘blowfish_secret‘] = ‘7a1e4b41291c0c74e82ef5a5f528dc82‘;添加随机字符串

浏览器登陆:192.168.1.102/pma
提示:The mbstring extension is missing。
pma]# yum install php-mbstring -y 安装扩展模块

pma]# systemctl reload httpd 重新加载,重新登录

登录界面
技术分享图片
MariaDB [(none)]> set password for ‘root‘@‘localhost‘=password(‘magedu‘);
MariaDB [(none)]> set password for ‘root‘@‘127.0.0.1‘=password(‘magedu‘);
MariaDB [(none)]> flush privileges; 重读授权表生效
在登录界面输入上面的用户名和密码即可

以上是关于Centos7.2之phpadmin安装配置的主要内容,如果未能解决你的问题,请参考以下文章

【chrony】CentOS7.2 上chrony的安装与配置

mac 10.10.2如何配置mysql?

为啥登陆phpadmin的界面提示缺少mysqli扩展,请检查php配置

我安装了apache,mysql,phpadmin,smarty还有php5.2.5配置也配好了,可我还是不知道用啥编写php文件。。。

配置好Apache环境包之后,phpadmin进不去,config.inc.php文件都配置好了,登录名和密码都正确。

phpAdmin忘记登录密码后的操作