>  기사  >  데이터 베이스  >  MySQL 出现 Access denied for user 'root&amp_MySQL

MySQL 出现 Access denied for user 'root&amp_MySQL

WBOY
WBOY원래의
2016-05-31 08:46:421211검색

bitsCN.com

登录某台服务器的mysql时候总报错:

mysql2/client.rb:58:in `connect': Access denied for user 'root'@'localhost' (using password: YES) (Mysql2::Error)

解决方法:

  在windows 下的解决方法也一样的 

[sql]   view plain copy 在CODE上查看代码片 派生到我的代码片

  1. # /etc/init.d/mysqld stop   
  2. # mysqld_safe  --user=mysql --skip-grant-tables --skip-networking &   
  3. # mysql -u root mysql   
  4. mysql>  UPDATE  user  SET  Password= PASSWORD(’newpassword’)  where  USER=’root’;   
  5. mysql> FLUSH  PRIVILEGES;   
  6. mysql> quit   
  7. # /etc/init.d/mysqld restart   
  8. # mysql -uroot -p   
  9. Enter  password:    
  10. mysql>  
bitsCN.com
성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.