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

本站中文解释

log_syslog_include_pid是MySQL的一个参数变量,用于配置是否在系统日志(Syslog)中包括MySQL线程ID。log_syslog_include_pid参数控制MySQL在系统日志中打印进程ID(pid),默认值为OFF,即不包括进程ID。

要设置log_syslog_include_pid参数,可通过以下命令进行:

mysql> SET GLOBAL log_syslog_include_pid=ON;

其中,ON为日志中包括每个MySQL连接的进程ID;OFF为日志中不包括每个MySQL连接的进程ID。

官方英文解释

log_syslog_include_pid

Command-Line Format --log-syslog-include-pid[={OFF|ON}]
System Variable log_syslog_include_pid
Scope Global
Dynamic Yes
Type Boolean
Default Value ON

Whether to include the server process ID in each line of error
log output written to syslog. This variable
has no effect unless the
log_syslog system variable is
enabled. See Section 5.4.2.3, “Error Logging to the System Log”.

This variable does not exist on Windows.


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