35.8.ERROR1819(HY000):Yourpassworddoesnotsatisfythecurrentpolicyrequirements

玄學醬發表於2018-01-04

MySQL 5.7 密碼強度,必須含有0-9,a-z,A-Z以及“-”或“_”

https://dev.mysql.com/doc/refman/5.7/en/validate-password-options-variables.html

禁用密碼安全策略(早起5.7版本可用,新版已經廢棄這個選項)

#  cat /etc/my.cnf | grep validate-password
validate-password=OFF
		

新的方式修改策略與密碼長度

		
mysql> set global validate_password_policy=0;
mysql> set global validate_password_length=4;
mysql> grant all privileges on test.* to `test`@localhost  identified by `chen`;
		
		

原文出處:Netkiller 系列 手札
本文作者:陳景峰
轉載請與作者聯絡,同時請務必標明文章原始出處和作者資訊及本宣告。


相關文章