前言
CentOs安装配置phpMyAdmin其实非常简单,所谓的安装其实是不存在的,因为phpMyAdmin是php写的嘛,所以只需要下载安装包然后解压之后,简单配置下就可以使用了,下面给他家说下如何正确配置phpMyAdmin
安装:
1、首先在phpMyAdmin官方网站 http://www.phpmyadmin.net/downloads下载源码包 ,下载后上传到服务器解压即可,或者通过Linux命令来下载安装(推荐)
mportant; outline: 0px !important; word-break: break-all !important; border-radius: 0px !important; background: none !important; bottom: auto !important; float: none !important; left: auto !important; overflow: visible !important; position: static !important; right: auto !important; top: auto !important; vertical-align: baseline !important; box-sizing: content-box !important; font-size: 1em !important; min-height: auto !important; color: rgb(175, 175, 175) !important;" width="NaN" height="NaN"> 1 | |
2、下载phpMyAdmin安装包
1 | wget https: //files .phpmyadmin.net /phpMyAdmin/4 .6.0 /phpMyAdmin-4 .6.0-all-languages. tar .gz
|
3、解压文件
1 | tar zxvf phpMyAdmin-4.6.0-all-languages. tar .gz
|
4、将phpMyAdmin-4.6.0-all-languages放到web目录下
1 | mv phpMyAdmin-4.6.0-all-languages /usr/local/nginx/html
|
5、重新命名
1 | mv phpMyAdmin-4.6.0-all-languages phpMyAdmin
|
配置:
1 2 | cd /usr/local/nginx/html/phpMyAdmin/libraries
vim config.default.php
|
1、修改以下3处地方
1 2 3 | $cfg[ 'Servers' ][$i][ 'host' ] = '127.0.0.1' ;
$cfg[ 'Servers' ][$i][ 'user' ] = 'root' ;
$cfg[ 'Servers' ][$i][ 'password' ] = '123456' ;
|
报错:
mysqli_real_connect(): (HY000/2002): No such file or directorymysqli_real_connect(): (HY000/2002): No such file or directory
解决方法:
把phpmyadmin目录中的配置文件config.sample.inc.php改成config.inc.php。并且修改以下:
1 2 3 | $cfg[ 'Servers' ][$i][ 'host' ] = 'localhost' ;
$cfg[ 'Servers' ][$i][ 'host' ] = '127.0.0.1' ;
|
再次刷新页面就不会出现mysqli_real_connect(): (HY000/2002): No such file or directory
的错误提示了。
访问:
本项目在放在 nginx 测试目录html下,在浏览器中输入 ip:/phpMyAdmin,然后输入用户名、密码即可。
打赏支付宝微信扫一扫,打赏作者吧~
本文链接:https://www.kinber.cn/post/1288.html 转载需授权!
推荐本站淘宝优惠价购买喜欢的宝贝:
您阅读本篇文章共花了: