2017-07-03 153 views

回答

3

首先確保你是root,非root用戶無法登錄到MySQL root用戶使用空口令:在

$ sudo su

下一頁日誌到MySQL

# mysql -uroot

如果這讓你訪問被拒絕,我們需要(重新)設置密碼與登錄,然後我們可以再刪除:

# mysql_secure_installation

按照提示,然後嘗試並使用您在上一步中提供的密碼再次登錄您的新密碼root用戶。

# mysql -uroot -p

您登錄到MySQL後:

use mysql; update user set authentication_string=password(''), plugin='mysql_native_password' where user='root'; flush privileges;

現在退出,退出根目錄下以普通賬號登錄到MySQL的root用戶:

exit # exit mysql # exit # exit root user back to normal ubuntu user account $ mysql -uroot # log back in to mysql under your non-root ubuntu user account