如果您安裝了MySQL,并發(fā)現(xiàn)沒有初始化用戶密碼,那么您需要進行以下操作來設(shè)置密碼:
sudo service mysql stop sudo mysqld --skip-grant-tables & mysql -u root mysql update user set authentication_string=password('new_password') where user='root'; update user set plugin="mysql_native_password" where user='root'; flush privileges; quit
上述代碼需要進行以下操作:
- 停止MySQL服務(wù)
- 使用跳過授權(quán)表的方式啟動MySQL服務(wù)
- 進入MySQL,并更新root用戶的密碼為“new_password”
- 設(shè)置root用戶的插件為“mysql_native_password”
- 刷新權(quán)限
接下來,您可以重新啟動MySQL服務(wù),并使用新密碼進行登錄。