我的系统是linux,最近新装好的mysql在进入mysql工具时,总是有错误提示:
# mysql -uroot -p
Enter password:
ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO)
使用网上介绍的方法修改root用户的密码:
# mysqladmin -uroot -p password 'newpassword'
Enter password:
mysqladmin: connect to server at 'localhost' failed
error: 'Access denied for user 'root'@'localhost' (using password: YES)'
现在终于被我找到了解决方法,如下(请先测试方法三,谢谢!):
方法一:
# /etc/init.d/mysql stop
# mysqld_safe --user=mysql --skip-grant-tables --skip-networking &
# mysql -u root mysql
mysql> UPDATE user SET Password=PASSWORD('newpassword') where USER='root';
mysql> FLUSH PRIVILEGES;
mysql> quit
# /etc/init.d/mysql restart
# mysql -uroot -p
Enter password: <输入新设的密码newpassword>
mysql>
方法二:
直接使用/etc/mysql/debian.cnf文件中[client]节提供的用户名和密码:
# mysql -udebian-sys-maint -p
Enter password: <输入[client]节的密码>
mysql> UPDATE user SET Password=PASSWORD('newpassword') where USER='root';
mysql> FLUSH PRIVILEGES;
mysql> quit
# mysql -uroot -p
Enter password: <输入新设的密码newpassword>
mysql>
方法三:
这种方法我没有进行过测试,因为我的root用户默认密码已经被我修改过了,那位有空测试一下,把结果告诉我,谢谢!!
# mysql -uroot -p
Enter password: <输入/etc/mysql/debian.cnf文件中[client]节提供的密码>
至此,困惑多时的问题解决了!
关于这个问题,在网上找了好多方法都不管用
我用的php-4.4.1+mysql-4.0.26+Windows2000专业版搭建的环境
PhpMyAdmin2.11.4 版本。
当以此安装完后在WEB目录下安装了Discuz!6.0.0版本的论坛成功。
然后在安装PhpMyAdmin2.11.4 后出现问题:问题如题目{ mysql #1045 - Access denied for user 'root'@'localhost' (using password: NO) }
安装PhpMyAdmin2.11.4 很简单不多说了,直接下载解压缩放在web目录下就可以,我2000系统的目录是C:\Inetpub\wwwroot\PhpMyAdmin
网上最多教的方法是从PhpMyAdmin\libraries目录下 找到config.default.php 文件然后复制到根目录PhpMyAdmin下 改名字为 config.inc.php 然后修改里面的内容等等
但是在PhpMyAdmin2.11.4 版本里不需要,只要找到根目录下的config.sample.inc.php文件,复制里面的内容到新建文件config.inc.php里就可以了。 config.inc.php要放在根目录下。
然后修改里面的内容为如下:(只修改红色部分)
<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
* phpMyAdmin sample configuration, you can use it as base for
* manual configuration. For easier setup you can use scripts/setup.php
*
* All directives are explained in Documentation.html and on phpMyAdmin
* wiki <http://wiki.cihar.com>.
*
* @version $Id: config.sample.inc.php 10142 2007-03-20 10:32:13Z cybot_tm $
*/
/*
* This is needed for cookie based authentication to encrypt password in
* cookie
*/
$cfg['blowfish_secret'] = '2156'; /* YOU MUST FILL IN THIS FOR COOKIE AUTH! */
//此句为注释不需要,上面的2156是随便值。
/*
* Servers configuration
*/
$i = 0;
/*
* First server
*/
$i++;
/* Authentication type */
$cfg['Servers'][$i]['auth_type'] = 'cookie';
/* Server parameters */
$cfg['Servers'][$i]['host'] = 'localhost';
$cfg['Servers'][$i]['connect_type'] = 'tcp';
$cfg['Servers'][$i]['compress'] = false;
/* Select mysqli if your server has it */
$cfg['Servers'][$i]['extension'] = 'mysql';
/* User for advanced features */
$cfg['Servers'][$i]['controluser'] = 'root';
$cfg['Servers'][$i]['controlpass'] = '123456';
/* Advanced phpMyAdmin features */
// $cfg['Servers'][$i]['pmadb'] = 'phpmyadmin';
// $cfg['Servers'][$i]['bookmarktable'] = 'pma_bookmark';
// $cfg['Servers'][$i]['relation'] = 'pma_relation';
// $cfg['Servers'][$i]['table_info'] = 'pma_table_info';
// $cfg['Servers'][$i]['table_coords'] = 'pma_table_coords';
// $cfg['Servers'][$i]['pdf_pages'] = 'pma_pdf_pages';
// $cfg['Servers'][$i]['column_info'] = 'pma_column_info';
// $cfg['Servers'][$i]['history'] = 'pma_history';
// $cfg['Servers'][$i]['designer_coords'] = 'pma_designer_coords';
/*
* End of servers configuration
*/
/*
* Directories for saving/loading files from server
*/
$cfg['UploadDir'] = '';
$cfg['SaveDir'] = '';
?>
基本工作完成,现在试着打开就会提示 如题的错误。
方法是 在C:\Inetpub\wwwroot\目录下新建个文件夹(例如:PMA)
然后把PhpMyAdmin文件夹拖到PMA目录下就OK了
访问的目录就应该是 http://localhost/PMA/phpmyadmin/index.php
如果前一步$cfg['blowfish_secret'] = '2156'; 没有设置任意值的话,会提示错误信息“配置文件现在需要绝密的短语密码(blowfish_secret)”
忘记设置的话,快补上喽,我也是新手,刚开始学PHP。 有不准确的描述多包含。
本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/fanenmin/archive/2008/03/31/2234350.aspx
# mysql -uroot -p
Enter password:
ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO)
使用网上介绍的方法修改root用户的密码:
# mysqladmin -uroot -p password 'newpassword'
Enter password:
mysqladmin: connect to server at 'localhost' failed
error: 'Access denied for user 'root'@'localhost' (using password: YES)'
现在终于被我找到了解决方法,如下(请先测试方法三,谢谢!):
方法一:
# /etc/init.d/mysql stop
# mysqld_safe --user=mysql --skip-grant-tables --skip-networking &
# mysql -u root mysql
mysql> UPDATE user SET Password=PASSWORD('newpassword') where USER='root';
mysql> FLUSH PRIVILEGES;
mysql> quit
# /etc/init.d/mysql restart
# mysql -uroot -p
Enter password: <输入新设的密码newpassword>
mysql>
方法二:
直接使用/etc/mysql/debian.cnf文件中[client]节提供的用户名和密码:
# mysql -udebian-sys-maint -p
Enter password: <输入[client]节的密码>
mysql> UPDATE user SET Password=PASSWORD('newpassword') where USER='root';
mysql> FLUSH PRIVILEGES;
mysql> quit
# mysql -uroot -p
Enter password: <输入新设的密码newpassword>
mysql>
方法三:
这种方法我没有进行过测试,因为我的root用户默认密码已经被我修改过了,那位有空测试一下,把结果告诉我,谢谢!!
# mysql -uroot -p
Enter password: <输入/etc/mysql/debian.cnf文件中[client]节提供的密码>
至此,困惑多时的问题解决了!
关于这个问题,在网上找了好多方法都不管用
我用的php-4.4.1+mysql-4.0.26+Windows2000专业版搭建的环境
PhpMyAdmin2.11.4 版本。
当以此安装完后在WEB目录下安装了Discuz!6.0.0版本的论坛成功。
然后在安装PhpMyAdmin2.11.4 后出现问题:问题如题目{ mysql #1045 - Access denied for user 'root'@'localhost' (using password: NO) }
安装PhpMyAdmin2.11.4 很简单不多说了,直接下载解压缩放在web目录下就可以,我2000系统的目录是C:\Inetpub\wwwroot\PhpMyAdmin
网上最多教的方法是从PhpMyAdmin\libraries目录下 找到config.default.php 文件然后复制到根目录PhpMyAdmin下 改名字为 config.inc.php 然后修改里面的内容等等
但是在PhpMyAdmin2.11.4 版本里不需要,只要找到根目录下的config.sample.inc.php文件,复制里面的内容到新建文件config.inc.php里就可以了。 config.inc.php要放在根目录下。
然后修改里面的内容为如下:(只修改红色部分)
<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
* phpMyAdmin sample configuration, you can use it as base for
* manual configuration. For easier setup you can use scripts/setup.php
*
* All directives are explained in Documentation.html and on phpMyAdmin
* wiki <http://wiki.cihar.com>.
*
* @version $Id: config.sample.inc.php 10142 2007-03-20 10:32:13Z cybot_tm $
*/
/*
* This is needed for cookie based authentication to encrypt password in
* cookie
*/
$cfg['blowfish_secret'] = '2156'; /* YOU MUST FILL IN THIS FOR COOKIE AUTH! */
//此句为注释不需要,上面的2156是随便值。
/*
* Servers configuration
*/
$i = 0;
/*
* First server
*/
$i++;
/* Authentication type */
$cfg['Servers'][$i]['auth_type'] = 'cookie';
/* Server parameters */
$cfg['Servers'][$i]['host'] = 'localhost';
$cfg['Servers'][$i]['connect_type'] = 'tcp';
$cfg['Servers'][$i]['compress'] = false;
/* Select mysqli if your server has it */
$cfg['Servers'][$i]['extension'] = 'mysql';
/* User for advanced features */
$cfg['Servers'][$i]['controluser'] = 'root';
$cfg['Servers'][$i]['controlpass'] = '123456';
/* Advanced phpMyAdmin features */
// $cfg['Servers'][$i]['pmadb'] = 'phpmyadmin';
// $cfg['Servers'][$i]['bookmarktable'] = 'pma_bookmark';
// $cfg['Servers'][$i]['relation'] = 'pma_relation';
// $cfg['Servers'][$i]['table_info'] = 'pma_table_info';
// $cfg['Servers'][$i]['table_coords'] = 'pma_table_coords';
// $cfg['Servers'][$i]['pdf_pages'] = 'pma_pdf_pages';
// $cfg['Servers'][$i]['column_info'] = 'pma_column_info';
// $cfg['Servers'][$i]['history'] = 'pma_history';
// $cfg['Servers'][$i]['designer_coords'] = 'pma_designer_coords';
/*
* End of servers configuration
*/
/*
* Directories for saving/loading files from server
*/
$cfg['UploadDir'] = '';
$cfg['SaveDir'] = '';
?>
基本工作完成,现在试着打开就会提示 如题的错误。
方法是 在C:\Inetpub\wwwroot\目录下新建个文件夹(例如:PMA)
然后把PhpMyAdmin文件夹拖到PMA目录下就OK了
访问的目录就应该是 http://localhost/PMA/phpmyadmin/index.php
如果前一步$cfg['blowfish_secret'] = '2156'; 没有设置任意值的话,会提示错误信息“配置文件现在需要绝密的短语密码(blowfish_secret)”
忘记设置的话,快补上喽,我也是新手,刚开始学PHP。 有不准确的描述多包含。
本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/fanenmin/archive/2008/03/31/2234350.aspx
作者:jackxiang@向东博客 专注WEB应用 构架之美 --- 构架之美,在于尽态极妍 | 应用之美,在于药到病除
地址:https://jackxiang.com/post/3050/
版权所有。转载时必须以链接形式注明作者和原始出处及本声明!
最后编辑: jackxiang 编辑于2010-5-10 01:02
评论列表