服务无法在启动时启动

Jas*_*ley 1 debian systemd systemctl

我正在 Debian 9 机器上自动启动 Jenkins 服务。

我的服务运行良好。服务定义是:

[Unit]
SourcePath=/etc/init.d/jenkins
Description=LSB: Start Jenkins at boot time
Before=runlevel2.target runlevel3.target runlevel4.target runlevel5.target shutdown.target
After=remote-fs.target systemd-journald-dev-log.socket network-online.target
Wants=network-online.target
Conflicts=shutdown.target

[Service]
Type=forking
Restart=no
TimeoutStartSec=5min
TimeoutStopSec=10s
IgnoreSIGPIPE=no
KillMode=process
GuessMainPID=no
RemainAfterExit=yes
SysVStartPriority=2
ExecStart=/etc/init.d/jenkins start
ExecStop=/etc/init.d/jenkins stop
Run Code Online (Sandbox Code Playgroud)

但问题是当我重新启动节点时,该服务不会自动启动。我必须手动运行systemctl start jenkins

由于我systemctl enable jenkins是自动部署此 VM,因此无法选择手动操作。

创建新的 jenkins vm 后,它应该已经能够在重新启动后启动服务。

即使我做手册systemctl enable jenkins,我也会得到:

# systemctl enable jenkins
Synchronizing state of jenkins.service with SysV service script with /lib/systemd/systemd-sysv-install.
Executing: /lib/systemd/systemd-sysv-install enable jenkins
The unit files have no installation config (WantedBy, RequiredBy, Also, Alias
settings in the [Install] section, and DefaultInstance for template units).
This means they are not meant to be enabled using systemctl.
Possible reasons for having this kind of units are:
1) A unit may be statically enabled by being symlinked from another unit's
   .wants/ or .requires/ directory.
2) A unit's purpose may be to act as a helper for some other unit which has
   a requirement dependency on it.
3) A unit may be started when needed via activation (socket, path, timer,
   D-Bus, udev, scripted systemctl call, ...).
4) In case of template units, the unit is meant to be enabled with some
   instance name specified.
Run Code Online (Sandbox Code Playgroud)

我在这里缺少什么吗?

Jef*_*ler 5

[Install]就像它说的那样,您似乎确实缺少该部分。从 Jenkins 网站,将 Jenkins安装为 Unix 守护进程,尝试添加以下内容:

[Install]
WantedBy=multi-user.target
Run Code Online (Sandbox Code Playgroud)

请注意,他们的股票示例直接调用 java,而不是派生出一个 shell 脚本。

要使服务在启动时启动,请运行:

systemctl enable jenkins
Run Code Online (Sandbox Code Playgroud)

或者手动创建符号链接:

ln -s /etc/systemd/system/jenkins.service /etc/systemd/system/multi-user.target.wants/jenkins.service
Run Code Online (Sandbox Code Playgroud)