CREATE WEAK PASSWORD DICTIONARY
注意事项
- 弱口令字典中的口令存放在gs_global_config系统表中。
- 弱口令字典默认为空,用户通过本语法可以新增一条或多条弱口令。
- 当用户尝试通过本语法插入gs_global_config表中已存在的弱口令时,会只在表中保留一条该弱口令。
参数说明
openGauss=# CREATE WEAK PASSWORD DICTIONARY WITH VALUES ('password1');
openGauss=# CREATE WEAK PASSWORD DICTIONARY WITH VALUES ('password2'),('password3');
openGauss=# DROP WEAK PASSWORD DICTIONARY;