如何使用 systemd 服务启动需要 root 的脚本?

如何使用 systemd 服务启动需要 root 的脚本?

我试图在 CentOS 中启动一些事情,但遇到了一些我不知道如何解决的问题。

这是我的.service 文件:

[Unit]
Description="Boot Jenkins slave and SonarQube server"
After=network.target

[Service]
Type=simple
ExecStart=/var/boot.sh
User=root
Group=root

[Install]
WantedBy=default.target

systemctl daemon-reloadsystemctl enable my.service和 之后systemctl start my.service,实际上似乎没有任何事情发生/起作用。

的输出systemctl status my.service是:

$ systemctl status my.service 
● startup.service - "Boot Jenkins slave and SonarQube server"
   Loaded: loaded (/etc/systemd/system/my.service; enabled; vendor preset: disabled)
   Active: inactive (dead) since Wed 2017-04-26 19:49:31 IDT; 1min 41s ago
  Process: 988 ExecStart=/var/boot.sh (code=exited, status=0/SUCCESS)
 Main PID: 988 (code=exited, status=0/SUCCESS)

Apr 26 19:49:00 build-1 systemd[1]: Started "Boot Jenkins slave and SonarQube server".
Apr 26 19:49:00 build-1 systemd[1]: Starting "Boot Jenkins slave and SonarQube server"...
Apr 26 19:49:00 build-1 boot.sh[988]: Starting SonarQube...
Apr 26 19:49:01 build-1 boot.sh[988]: Started SonarQube.

据说,事情应该有效,但它们没有......
但是,如果我手动运行 boot.sh,它们就会起作用。

su ...
./boot.sh

boot.sh 是:

#!/bin/bash

nohup java -jar /var/jenkins/slave.jar -jnlpUrl https://***.jnlp -secret **** &
/var/sonarqube-6.3/bin/linux-x86-64/sonar.sh start

请注意,SonarQube 需要 root。
我究竟做错了什么?

更新:日志来自cat /var/log/messages | grep SonarQube

Apr 26 20:58:53 build-1 systemd: Started "Boot Jenkis slave and SonarQube server".
Apr 26 20:58:53 build-1 systemd: Starting "Boot Jenkis slave and SonarQube server"...
Apr 26 20:58:53 build-1 boot.sh: Starting SonarQube...
Apr 26 20:58:53 build-1 boot.sh: Started SonarQube.

答案1

对于 SonarQube 我最终只是遵循这个:https://devopscube.com/setup-and-configure-sonarqube-on-linux/,它指示如何将 SonarQube 添加为服务...奇怪的是,这比 systemd 方法简单得多。

对于文件中的第一个命令,这仍然是一个悬而未决的问题......

相关内容