如何将Systemd服务的输出重定向到文件

我正在尝试将systemd服务的输出重定向到文件,但它似乎不起作用:

[Unit]

Description=customprocess

After=network.target

[Service]

Type=forking

ExecStart=/usr/local/bin/binary1 agent -config-dir /etc/sample.d/server

StandardOutput=/var/log1.log

StandardError=/var/log2.log

Restart=always

[Install]

WantedBy=multi-user.target

请更正我的方法。

回答:

我认为有一种解决问题的更优雅的方法:将stdout / stderr发送给具有标识符的syslog,并指示syslog管理器按程序名称拆分其输出。

在您的systemd服务单元文件中使用以下属性:

StandardOutput=syslog

StandardError=syslog

SyslogIdentifier=<your program identifier> # without any quote

然后,假设您的发行版正在使用rsyslog管理syslog,请在/etc/rsyslog.d/<new_file>.conf其中创建一个包含以下内容的文件:

if $programname == '<your program identifier>' then /path/to/log/file.log

& stop

现在,使日志文件可通过syslog写入:

# ls -alth /var/log/syslog 

-rw-r----- 1 syslog adm 439K Mar 5 19:35 /var/log/syslog

# chown syslog:adm /path/to/log/file.log

重新启动rsyslog(sudo systemctl restart rsyslog)享受!您的程序stdout /

stderr仍可通过journalctl(sudo journalctl -u <your program

identifier>)获得,但它们也将在您选择的文件中提供。

资料来源:archive.org

以上是 如何将Systemd服务的输出重定向到文件 的全部内容, 来源链接: utcz.com/qa/435532.html

回到顶部