Chinaunix首页 | 论坛 | 博客
  • 博客访问: 428713
  • 博文数量: 112
  • 博客积分: 4451
  • 博客等级: 上校
  • 技术积分: 1063
  • 用 户 组: 普通用户
  • 注册时间: 2009-02-23 10:19
个人简介

更多精品http://shop65927331.taobao.com

文章分类

全部博文(112)

文章存档

2011年(19)

2010年(54)

2009年(39)

分类: Mysql/postgreSQL

2010-01-18 12:10:28

 
解决MySQL访问时出现ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using
 
# /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/mysqld restart
# mysql -uroot -p
Enter password: <输入新设的密码newpassword>

mysql>
阅读(555) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~