您好,登錄后才能下訂單哦!
環境:redhat 5.7 安裝了mysql 5.0
安裝完mysql之后啟動成功,但是使用mysql -uroot -p登錄是,密碼錯誤,確定沒有設置過密碼
出錯提示:Access denied for user 'root'@'localhost' (using password : No)
解決辦法如下:
1.先關閉mysql服務
xiaopeng# /etc/init.d/mysqld stop
2.輸入操作命令
xiaopeng# mysqld_safe --user=mysql --skip-grant-tables --skip-networking &
3.連接mysql
xiaopeng# mysql -uroot mysql
mysql> update user set Password=PASSWORD('newpassword') where USER='root';
mysql> flush PRIVILEGES;
mysql> quit
4.重啟mysql服務
xiaopeng# /etc/init.d/mysqld restart
xiaopeng# mysql -uroot -p
Enter password:<newpassword>
更多資源請訪問www.arppinging.com
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。