未知數(shù)據(jù)庫密碼或初次登陸可用此方法:
如果是修改密碼則要先停止MySQL服務
systemctl stop mysqld
創(chuàng)新互聯(lián)溝通電話:13518219792,為您提供成都網(wǎng)站建設網(wǎng)頁設計及定制高端網(wǎng)站建設服務,創(chuàng)新互聯(lián)網(wǎng)頁制作領域十多年,包括酒店設計等多個方面擁有豐富設計經(jīng)驗,選擇創(chuàng)新互聯(lián),為企業(yè)錦上添花。
1修改配置文件,跳過密碼進入數(shù)據(jù)庫
vim /etc/my.cnf
[mysqld]
skip-grant-tables
重啟服務:
systemctl restart mysqld
進入數(shù)據(jù)庫:
mysql
查看數(shù)據(jù)庫表結構:
desc mysql.user;
設置數(shù)據(jù)庫登陸密碼
update mysql.user set authentication_string=password("123456");
退出
quit
再次修改配置文件,將剛才的跳過密碼注釋掉,再寫入兩行
[mysqld]
#skip-grant-tables
validate_password_policy=0
validate_password_length=6
重啟服務
systemctl restart mysqld
用設置好的密碼登陸數(shù)據(jù)庫
mysql -uroot -p123456
show databases;
此時需要用戶再寫一遍密碼
set password for root@localhost=password("123456");
退出
quit
再次進入
mysql -uroot -p123456
數(shù)據(jù)庫可正常使用:
show databases;