MySQL Variables proxy_user 数据库 参数变量解释及正确配置使用

本站中文解释

proxy_user是MySQL服务器参数变量,它用于指定连接使用哪个用户名。支持多个代理用户列表,列表中的用户名之间用逗号(,)分隔。

proxy_user参数的设置方法如下:

首先,在mysql服务端中执行以下语句,以创建并配置Proxysql帐户:

SET @@global.proxy_user = ‘proxysql_user’;

然后,在MySQL客户端中,添加以下行到my.cnf配置文件中,以使proxysql_user帐户可用:

proxy_user=proxysql_user

最后,重新加载mysql服务,以完成设置。

官方英文解释

proxy_user

System Variable proxy_user
Scope Session
Dynamic No
Type String

If the current client is a proxy for another user, this
variable is the proxy user account name. Otherwise, this
variable is NULL. See
Section 6.2.14, “Proxy Users”.


数据运维技术 » MySQL Variables proxy_user 数据库 参数变量解释及正确配置使用