[Enchancement](auth) Forbid to login doris from 127.0.0.1 without password (#18816)

* forbid to login from 127.0.0.1 without password

* add localhost limit

* rename
This commit is contained in:
WenYao
2023-04-23 13:56:31 +08:00
committed by GitHub
parent 61b44108e2
commit 166bed11d4
5 changed files with 16 additions and 7 deletions

View File

@ -2135,5 +2135,12 @@ public class Config extends ConfigBase {
*/
@ConfField(mutable = true)
public static boolean infodb_support_ext_catalog = false;
/**
* If true, auth check will be disabled. The default value is false.
* This is to solve the case that user forgot the password.
*/
@ConfField(mutable = true)
public static boolean skip_localhost_auth_check = false;
}