Phpmyadmin修改Root密码无法登陆的解决方法_PHP教程

WBOY
Release: 2016-07-21 14:54:23
Original
1214 people have browsed it

  以前用AMPServ做测试都是直接用默认的空密码root账号。今天要安装的一个环境不允许密码为空,无奈就给root加个密码。却发现网上大部分教程都只是说用什么方法可以修改。但很少有详细介绍的。翻了大半个小时才找到办法。写到这里,免得下回又忘了。这里只有一种方法:phpmyadmin

  首先用root账号登陆phpmyadmin,然后点击左侧进入mysql数据库,在顶部点击“mysql”进入sql输入界面。输入以下命令:

  update user set password=password(‘123456′) where User=’root’

  其中123456为你希望修改的密码,切记不要在数据库中直接手工修改密码。

phpmyadmin修改Root密码无法登陆 

  修改mysql数据库root密码

  然后点击右下角的“执行”,看到如下界面,就表示修改成功。

phpmyadmin修改Root密码无法登陆 

  phpmyadmin修改mysql数据库root密码成功。

  千万别走开,还没有结束。接着还要进入phpmyadmin目下下的libraries目录,修改config.default.php文件。找到$cfg['Servers'][$i]['password'] = ‘ ‘,

  修改为$cfg['Servers'][$i]['password'] = ‘123456′; 123456就是您想要的密码。现在赶快登陆试试吧。

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/364617.htmlTechArticle以前用AMPServ做测试都是直接用默认的空密码root账号。今天要安装的一个环境不允许密码为空,无奈就给root加个密码。却发现网上大部分教...
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 Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!