在MySQL的使用過程當中,咱們可能會碰到「Access denied for user 'root'@'localhost' (using password:YES)」的問題,那麼接下來咱們就來解決它。mysql
通過個人百度查詢最後得出結論:出現這種錯誤有兩種可能,一是MySQL的root用戶的密碼錯誤,二是權限不夠的問題。一般解決辦法是修改密碼。。。sql
因爲我使用的是Windows系統,因此方法也是Windows系統的修改方法:socket
一、開始 → 搜索欄裏面輸入cmd → 右鍵cmd.exe選擇以管理員的身份運行(亦能夠在C:\Windows\System32目錄下找到這個cmd.exe,右鍵,以管理員身份運行)ui
二、輸入net stop mysql中止MySQL服務命令行
三、輸入命令行來到mysql的bin目錄下,輸入下列粗體命令ip
D:\MySQL\bin>mysqld --defaults-file="D:\MySQL\my.ini" --console --skip-grant-tablesrem
等一下,顯示出如下結果說明MySQL啓動:cmd
170215 22:26:09 [Warning] The syntax '--log' is deprecated and will be removed inMySQL 7.0. Please use '--general_log'/'--general_log_file' instead.
170215 22:26:09 [Warning] The syntax '--log_slow_queries' is deprecated and will be removed in MySQL 7.0. Please use '--slow_query_log'/'-- slow_query_log_file' instead.
170215 22:26:09 [Warning] The syntax '--log' is deprecated and will be removed in MySQL 7.0. Please use '--general_log'/'--general_log_file' instead.
170215 22:26:09 [Warning] The syntax '--log_slow_queries' is deprecated and will be removed in MySQL 7.0. Please use '--slow_query_log'/'--slow_query_log_file' instead.
170215 22:26:09 [ERROR] The update log is no longer supported by MySQL in version 5.0 and above. It is replaced by the binary log. Now starting MySQL with --log-bin='' instead.
170215 22:26:09 InnoDB: Started; log sequence number 0 324221
170215 22:26:09 [Note] mysqld: ready for connections.Version: '5.1.33-community-log' socket: '' port: 3306 MySQL Community Server (GPL)string
四、再以管理員的身份打開一個cmd.exe,輸入命令行來到mysql的bin目錄下,輸入:mysql -uroot mysqlit
五、進入mysql以後,輸入命令行修改密碼:
mysql>update user set authentication_string=password('123456') where user='root';
六、刷新權限:mysql>flush privileges;
七、退出mysql:mysql> quit;
八、關閉MySQL:D:\MySQL\bin>mysqladmin shutdown(出現錯誤,則:mysqladmin -uroot -p shutdown 而後輸入新密碼)
九、至此修改密碼完成,能夠輸入命令行:net start mysql 啓動MySQL服務,mysql -uroot -p ,輸入密碼就能夠進入mysql了。