Maison> base de données> phpMonAdmin> le corps du texte

phpmyadmin登录出现2003错误怎么办

coldplay.xixi
Libérer: 2020-08-17 14:29:54
original
2548 Les gens l'ont consulté

phpmyadmin登录出现2003错误的解决办法:1、查找【$cfg['Servers'][$i]['auth_type'] = 'config'】更改为【**= 'http'】;2、将其中的$cfg['Servers']补上正确代码。

phpmyadmin登录出现2003错误怎么办

【相关教程推荐:phpmyadmin

phpmyadmin登录出现2003错误的解决办法:

方法一:查找$cfg['Servers'][$i]['auth_type'] = 'config';

更改为$cfg['Servers'][$i]['auth_type'] = 'http';

访问的时候需要输入用户名和密码

方法二:"#2003 - 服务器没有响应"PHPMYADMIN登陆问题的解决

问题描述:

登陆PHPMYADMIN的时候提示 #2003 - 服务器没有响应

1 本地其它php+mysql程序运行正常;

2 phpmyadmin 以前运行正常,就最近出错.

解决办法:

找到/libraries/config.default.php文件中以下代码段:

复制内容到剪贴板代码:

$cfg['Servers'][$i]['auth_type'] = 'config'; // Authentication method (valid choices: config, http, HTTP, signon or cookie) $cfg['Servers'][$i]['user'] = 'root'; // MySQL user $cfg['Servers'][$i]['password'] = ''; // MySQL password (only needed with 'config' auth_type)
Copier après la connexion

将其中的$cfg['Servers'][$i]['password']补上相应的正确密码.

方法三:$cfg['Servers'][$i]['port']配置,遂查找到,后边添上端口号(默认为3306),

但是,还是失败。于是到服务中查看MySQL启动了没,发现没有启动,原来问题在这里。

手动启动,出现如下错误:找不到系统指定路径

在DOS下进入BIN目录

C:\Program Files\MySQL\MySQL Server 5.4\bin
Copier après la connexion

在DOS下 输入mysqld-nt -remove删除服务

在接着输入mysqld-nt -install安装服务

出现如下提示:

The service already exists! The current server installed: E:\Program Files\MySQL\MySQL Server 5.4\bin\mysqld-nt MySQL
Copier après la connexion

这是由于以前装过MySQL没有卸载干净导致的

如何清理干净mysql?

在你从电脑里卸载旧的MYSQL数据库服务时,首先先在WINDOWS服务里停掉MYSQL的服务。再到控制面板里的增加删除程序内进行删除,但是你并不能完整的把MYSQL服务删除,那么就要在注册表里清除你的MYSQL服务。

有几个地方:  

1、HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\Eventlog\Application\MySQL 目录删除

2、HKEY_LOCAL_MACHINE\SYSTEM\ControlSet002\Services\Eventlog\Application\MySQL 目录删除  

3、HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Eventlog\Application\MySQL 目录删除注册表中的ControlSet001,ControlSet002,不一定是001和002,可能是ControlSet005、006之类,删除的时候,都删除就可以

检查C:\WINDOWS目录下是否有my.ini文件,将其删除

再重装一遍就好了。

相关学习推荐:编程视频

Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!

Étiquettes associées:
source:php.cn
Déclaration de ce site Web
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Derniers articles par auteur
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal
À propos de nous Clause de non-responsabilité Sitemap
Site Web PHP chinois:Formation PHP en ligne sur le bien-être public,Aidez les apprenants PHP à grandir rapidement!