Home > php教程 > PHP源码 > body text

解决登陆phpMyAdmin出现”#2002 无法登录 MySQL 服务器”方法

WBOY
Release: 2016-06-08 17:20:22
Original
1158 people have browsed it

,#2002 无法登录 MySQL 服务器错误我们可以判断一个是mysql服务器没有启动或者phpmyadmin中的主机配置有问题,下面一起来看看。

<script>ec(2);</script>
一般情况下,我们在管理Linux VPS服务器网站数据库的时候,大部分会使用PHPMYADMIN面板可视化管理数据库。晚上一网友告知原本可以登录的PHPMYADMIN今天无法登陆,但是网站运营都正常的,登录PHPMYADMIN的时候有出现红色"#2002 无法登录 MySQL 服务器"的错误提示,确定密码和用户是没有问题的。

 

解决登陆phpMyAdmin出现

 

出现问题不要紧,我们去寻找和搜索解决方法,最为直接的方法如下:

 

第一、遍历到我们当前网站环境中PHPMYADMIN文件夹所在的目录

 

第二、找到config.default.php文件

 

第三、更换交换:

 

 代码如下 复制代码

$cfg['Servers'][$i]['host'] = 'localhost';

更换成

$cfg['Servers'][$i]['host'] = '127.0.0.1';

 

第四、保存且替换服务器中的文件,重启MYSQL生效,不重启也可以。

 

最后,我们再登录PHPMYADMIN就可以正常登陆,这里需要注意一个问题,我们在安装网站的时候,配置服务器链接原来是LOCALHOST的,以后需要用127.0.0.1作为服务器链接
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template