MySQL Variables mysql_native_password_proxy_users 数据库 参数变量解释及正确配置使用
本站中文解释
MySQL参数变量mysql_native_password_proxy_users用于控制Native password验证方式下代理用户能够使用哪些特定的MySQL用户名进行验证,特别指定后,MySQL将只允许设定列表中的用户进行NativePassword验证。
设置方法:
1. 打开MySQL控制台,输入“mysql -u root -p”连接MySQL,输入正确的root密码登录
2. 在控制台输入以下命令进行设置:
SET GLOBAL mysql_native_password_proxy_users = ‘user1, user2’;
替换user1和user2为需要授权的用户名,多个值请以逗号分隔。
官方英文解释
mysql_native_password_proxy_users
Command-Line Format | --mysql-native-password-proxy-users[={OFF|ON}] |
---|---|
System Variable | mysql_native_password_proxy_users |
Scope | Global |
Dynamic | Yes |
Type | Boolean |
Default Value | OFF |
This variable controls whether the
mysql_native_password
built-in
authentication plugin supports proxy users. It has no effect
unless the check_proxy_users
system variable is enabled. For information about user
proxying, see Section 6.2.14, “Proxy Users”.