DVWA问题 2:Could not connect to the MySQL service.

问题描述:

进入DVWA初始化页面时,如图:
DVWA问题 2:Could not connect to the MySQL service._第1张图片

在点击下图中按钮 — Creat / Reset Database —后,出现下图文本方框内的错误提示:

Could not connect to the MySQL service.
Please check the config file.

DVWA问题 2:Could not connect to the MySQL service._第2张图片

问题分析与解决:

  1. 找到DVWA\config\ 目录下的config.inc.php 文件。
  2. 找到 : $_DVWA[ ‘db_password’ ] = ‘p@ssw0rd’;
  3. 将其改为:$_DVWA[ ‘db_password’ ] = ”;

这里的$_DVWA[ ‘db_password’ ] 设置的是MySQL root用户的密码(此处为空,直接把’p@ssw0rd’改为”就行了,即密码为空),再重新创建数据库即可

DVWA问题 2:Could not connect to the MySQL service._第3张图片

回到网页,点击按钮 — Creat / Reset Database —出现下图提示(横线以下部分),问题解决。
DVWA问题 2:Could not connect to the MySQL service._第4张图片
以上页面驻留几秒后,自动转到登录界面,大功告成:
PS:默认的用户名和密码为“admin/password”

DVWA问题 2:Could not connect to the MySQL service._第5张图片

你可能感兴趣的:(web前端,渗透)