以用户身份运行的系统服务在注销时终止

以用户身份运行的系统服务在注销时终止

我有一个为选定用户执行的系统服务。名称是serv@<uid><uid>是用户的 UID)。我想与服务共享用户的资源限制(将其放入user-<uid>.slice),并且我还想使用他的权限。

/etc/systemd/system/[email protected]

[Unit]
Description=My service for user %i

[Service]
Type=simple
ExecStart=/usr/local/bin/serv.sh
Restart=always
User=%i
Slice=user-%i.slice
SuccessExitStatus=0 255 SIGKILL SIGTERM

[Install]
WantedBy=multi-user.target

当用户注销时,使用 SIGTERM 终止服务。为什么服务没有重新启动?如何设置才不会终止服务?

答案1

对我来说,解决方案是loginctl enable-linger username。如果没有这个,当用户注销时服务就会终止。https://wiki.archlinux.org/index.php/Systemd/User#Automatic_start-up_of_systemd_user_instances

答案2

您可以更改登录配置:

/etc/systemd/logind.conf

[Login]
KillUserProcesses=no

这也会改变其他服务和后台进程的行为(例如screentmux)。看问题#3483;


在那之后跑systemctl restart systemd-logind

相关内容