真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

修改mysql數(shù)據(jù)庫密碼簡析

下文內(nèi)容主要給大家?guī)硇薷腗ySQL數(shù)據(jù)庫密碼簡析,這里所講到的知識,與書籍略有不同,都是創(chuàng)新互聯(lián)專業(yè)技術(shù)人員在與用戶接觸過程中,總結(jié)出來的,具有一定的經(jīng)驗分享價值,希望給廣大讀者帶來幫助。 

成都創(chuàng)新互聯(lián)公司是一家專注于成都做網(wǎng)站、網(wǎng)站設(shè)計與策劃設(shè)計,弓長嶺網(wǎng)站建設(shè)哪家好?成都創(chuàng)新互聯(lián)公司做網(wǎng)站,專注于網(wǎng)站建設(shè)十載,網(wǎng)設(shè)計領(lǐng)域的專業(yè)建站公司;建站業(yè)務(wù)涵蓋:弓長嶺等地區(qū)。弓長嶺做網(wǎng)站價格咨詢:028-86922220

mysql修改數(shù)據(jù)庫密碼:
5.7版本數(shù)據(jù)庫在安裝時日志中會顯示密碼
cat /var/log/mysqld.log | grep password

登錄時提示修改密碼:
mysql> show databases;
ERROR 1820 (HY000): You must reset your password using ALTER USER statement before executing this statement.
簡單密碼不可以設(shè)置:

修改mysql數(shù)據(jù)庫密碼簡析

mysql>  alter user 'root'@'localhost' identified by '123456';
ERROR 1819 (HY000): Your password does not satisfy the current policy requirements
mysql>

修改數(shù)據(jù)庫密碼設(shè)置,簡單密碼也可以用
set global validate_password_policy=0;
set global validate_password_length=1;

設(shè)置為簡單密碼:
alter user 'root'@'localhost' identified by '111111';

密碼忘記了:
修改配置文件/etc/my.cnf刪除或禁用skip-grant-tables這行。
注:mysql的數(shù)據(jù)庫老版本用參數(shù)authentication_string,新版本用參數(shù)password
update user set authentication_string=password('123456') where user='root';
update user set password=password('123456') where user='root';
flush privileges; --刷新系統(tǒng)權(quán)限表

用工具登錄時報錯
ERROR 1130: Host 192.168.3.100 is not allowed to connect to this MySQL server

select Host,User from user where user='root';  
update user set host = '%' where user ='root';
flush privileges;

再次登錄就可以了

對于以上關(guān)于修改mysql數(shù)據(jù)庫密碼簡析,如果大家還有更多需要了解的可以持續(xù)關(guān)注我們創(chuàng)新互聯(lián)的行業(yè)推新,如需獲取專業(yè)解答,可在官網(wǎng)聯(lián)系售前售后的,希望該文章可給大家?guī)硪欢ǖ闹R更新。

 

 


標(biāo)題名稱:修改mysql數(shù)據(jù)庫密碼簡析
文章URL:http://weahome.cn/article/gcdjgo.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部