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

本站中文解释

log_syslog_facility指定让MySQL向syslog发送日志信息时使用的facility值。该参数仅当MySQL支持syslog在操作中时才有效。

MySQL变量log_syslog_facility用于指定发送syslog日志信息时使用的facility值。此变量允许指定不同的syslog facility,以便发送格式化的MySQL日志消息。设置此参数的方法为:

在MySQL命令行界面中输入如下语句: SET GLOBAL log_syslog_facility='[syslog facility 值]’;

或者,可以在MySQL的配置文件中添加一行: log_syslog_facility='[syslog facility 值]’

下列是可用的syslog facility值:

• LOG_DAEMON:可用于以常规的方式发送具体的MySQL日志记录。

• LOG_LOCAL0 至 LOG_LOCAL7:可用于发送特定的MySQL日志记录,如连接数,查询次数等。

官方英文解释

log_syslog_facility

Command-Line Format --log-syslog-facility=value
System Variable log_syslog_facility
Scope Global
Dynamic Yes
Type String
Default Value daemon

The facility for error log output written to
syslog (what type of program is sending the
message). 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”.

The permitted values can vary per operating system; consult
your system syslog documentation.

This variable does not exist on Windows.


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