小编nan*_*tor的帖子

systemctl status显示非活动死亡

我正在尝试编写自己的(简单的)systemd服务,它可以做一些简单的事情.(就像使用shell脚本将数字1到10写入文件一样).我的服务文件如下所示.

[Unit]
Description=NandaGopal
Documentation=https://google.com
After=multi-user.target

[Service]
Type=forking  
RemainAfterExit=yes
ExecStart=/usr/bin/hello.sh &

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

这是我的shell脚本.

#!/usr/bin/env bash

source /etc/profile
a=0
while [ $a -lt 10 ]
do
   echo $a >> /var/log//t.txt
        a=`expr $a + 1`
done
Run Code Online (Sandbox Code Playgroud)

由于某种原因,服务没有出现,systemctl显示以下输出.

root@TARGET:~ >systemctl status -l hello
* hello.service - NandaGopal
   Loaded: loaded (/usr/lib/systemd/system/hello.service; disabled; vendor     preset: enabled)
   Active: inactive (dead)
    Docs: https://google.com
Run Code Online (Sandbox Code Playgroud)

一直想弄清楚过去2天出了什么问题.有人可以帮我吗?

问候,nandanator

linux sh systemd systemctl

15
推荐指数
2
解决办法
4万
查看次数

标签 统计

linux ×1

sh ×1

systemctl ×1

systemd ×1