search
HomeBackend DevelopmentPHP TutorialSolution to 2003 server unresponsive issue in phpmyadmin_PHP tutorial

When logging in to phpmyadmin, #2003 - The server is not responding. The first thing that comes to mind is whether your mysql server has stopped. Check it. If the mysql server has stopped serving, restarting can solve the problem.

1. The simplest solution to problems in APMServ5.2.6 is

The APMServ-MySQL5.1 service cannot be started on the local computer, error 1067, process terminated unexpectedly" method is very simple, just enter the "D:\Program Files\APMServ5.2.6\MySQL5.1\bin" folder and find Just execute the mysqld-nt.exe file
. By default, when APMServ is started, MySql5.1 is not started in the service. You need to execute the mysqld-nt.exe file to start the MySql service


2. Let’s check the phpmyadmin configuration file

Method 1: Find

The code is as follows
 代码如下 复制代码
$cfg['Servers'][$i]['auth_type'] = ‘config’;
更改为
$cfg['Servers'][$i]['auth_type'] = ‘http’;
Copy code

$cfg['Servers'][$i ]['auth_type'] = 'config';

Change to $cfg['Servers'][$i]['auth_type'] = ‘http’;

You need to enter your username and password when accessing

Method 2: "#2003 – Server is not responding" PHPMYADMIN login problem solution


Problem description:

When logging in to PHPMYADMIN, it prompts #2003 – The server is not responding

1 Other local php+mysql programs run normally;
 代码如下 复制代码
$cfg['Servers'][$i]['auth_type']     = ‘config’;    // Authentication method (valid choices: config, http, HTTP, signon or cookie) 验证方式一般填写cookie
$cfg['Servers'][$i]['user']          = ‘root’;      // MySQL user
$cfg['Servers'][$i]['password']      = ”;          // MySQL password (only needed with ‘config’ auth_type)
将其中的$cfg['Servers'][$i]['password'] 补上相应的正确密码.
3.连接mysql mysql.exe -u root -p -h 127.0.0.1
然后同步密码guoxue_mmkey_com
mysql> SET PASSWORD FOR -> ‘ some_user ‘@’ some_host ‘ = OLD_PASSWORD(‘ newpwd ‘);
结合我们的实际情况,在 MySQL Command Line Client 下运行:
set password for root@localhost = old_password(’123′);guoxue_mmkey_com
guoxue_mmkey_com
2 phpmyadmin used to run normally, but recently it went wrong.

Solution:

Find the following code segment in the /libraries/config.default.php file:

Copy content to clipboard code:
The code is as follows
Copy code
$cfg['Servers'][$i ]['auth_type'] = 'config'; // Authentication method (valid choices: config, http, HTTP, signon or cookie) Authentication method generally fills in cookie

$cfg['Servers'][$i]['user']     = ‘root’;     /  // MySQL user

$cfg['Servers'][$i]['password'] = ”; // MySQL password (only needed with ‘config’ auth_type) 3. Connect to mysql mysql.exe -u root -p -h 127.0.0.1 Then synchronize the password guoxue_mmkey_com mysql> SET PASSWORD FOR -> ‘ some_user ‘@’ some_host ‘ = OLD_PASSWORD(‘ newpwd ‘); Combined with our actual situation, run under MySQL Command Line Client: set password for root@localhost = old_password(’123′);guoxue_mmkey_com guoxue_mmkey_com If none of the above methods can solve the problem, it is recommended to reconfigure PHP and reinstall mysql, which usually solves the problem
Note: Check whether the firewall has closed port 3306, or directly close the firewall to test whether you can connect to MYSQL normally, start-run, enter IISRESET to restart IIS, and ensure that mysql starts earlier than IIS
http://www.bkjia.com/PHPjc/632933.htmlwww.bkjia.comtruehttp: //www.bkjia.com/PHPjc/632933.htmlTechArticleWhen logging in to phpmyadmin, #2003 - The server does not respond. The first thing that comes to mind is whether your mysql server has stopped checking. For a moment, if the mysql server stops serving, restarting can solve the problem...
Statement
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
phpmyadmin怎么设置主键phpmyadmin怎么设置主键Apr 07, 2024 pm 02:54 PM

表的主键是一列或多列,用于唯一标识表中每条记录。设置主键的步骤如下:登录 phpMyAdmin。选择数据库和表。勾选要作为主键的列。点击 "保存更改"。主键具有数据完整性、查找速度和关系建模方面的好处。

phpmyadmin怎么添加外键phpmyadmin怎么添加外键Apr 07, 2024 pm 02:36 PM

在 phpMyAdmin 中添加外键可以通过以下步骤实现:选择包含外键的父表。编辑父表结构,在“列”中添加新列。启用外键约束,选择引用表和键。设置更新/删除操作。保存更改。

phpmyadmin账号密码是什么phpmyadmin账号密码是什么Apr 07, 2024 pm 01:09 PM

PHPMyAdmin 的默认用户名和密码为 root 和空。为了安全起见,建议更改默认密码。更改密码的方法:1. 登录 PHPMyAdmin;2. 选择 "privileges";3. 输入新密码并保存。忘记密码时,可通过停止 MySQL 服务并编辑配置文件的方式重置密码:1. 添加 skip-grant-tables 行;2. 登录 MySQL 命令行并重置 root 密码;3. 刷新权限表;4. 删除 skip-grant-tables 行,重启 MySQL 服务。

phpmyadmin日志在哪里phpmyadmin日志在哪里Apr 07, 2024 pm 12:57 PM

PHPMyAdmin日志文件的默认位置:Linux/Unix/macOS:/var/log/phpmyadminWindows:C:\xampp\phpMyAdmin\logs\日志文件用途:故障排除审计安全性

phpmyadmin怎么删除数据表phpmyadmin怎么删除数据表Apr 07, 2024 pm 03:00 PM

phpMyAdmin 中删除数据表的步骤:选择数据库和数据表;点击“操作”选项卡;选择“删除”选项;确认并执行删除操作。

为什么phpmyadmin拒绝访问为什么phpmyadmin拒绝访问Apr 07, 2024 pm 01:03 PM

phpMyAdmin 拒绝访问的原因及解决方案:认证失败:检查用户名和密码是否正确。服务器配置错误:调整防火墙设置,检查数据库端口是否正确。权限问题:授予用户对数据库的访问权限。会话超时:刷新浏览器页面重新连接。phpMyAdmin 配置错误:检查配置文件和文件权限,确保启用了必需的 Apache 模块。服务器问题:等待一段时间后再重试或联系主机提供商。

phpmyadmin漏洞属于什么漏洞phpmyadmin漏洞属于什么漏洞Apr 07, 2024 pm 01:36 PM

phpMyAdmin 易受多种漏洞影响,包括:1. SQL 注入漏洞;2. 跨站点脚本 (XSS) 漏洞;3. 远程代码执行 (RCE) 漏洞;4. 本地文件包含 (LFI) 漏洞;5. 信息泄露漏洞;6. 权限提升漏洞。

phpmyadmin关联视图在哪phpmyadmin关联视图在哪Apr 07, 2024 pm 01:00 PM

可以在 phpMyAdmin 中“结构”选项卡下的“视图”子菜单中找到关联视图。要访问它们,只需选择数据库、点击“结构”选项卡、然后点击“视图”子菜单。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function