linux – systemctl status显示inactive dead

我正在尝试编写自己的(简单的)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

这是我的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

由于某种原因,服务没有出现,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

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

问候,
nandanator

解决方法

>您已设置Type = Forking,但您的服务不起作用.尝试
TYPE =单稳
>你有一个“&”您的ExecStart行,这是不必要的.
>该服务已禁用,这意味着它无法在启动时启动.您应该运行systemctl enable hello将其设置为在启动时启动.

您可以检查man systemd.directives以查找可在单元文件中使用的所有指令的索引.

相关文章

文件查找(find) 1 find 简单的说,就是实时查找指定的内容或条件。特点:最新、最快、最准确。 用法:...
非交互式添加分区 方法一 添加/deb/sdb 下的分区,其实位置为1到1000M,第二个分区位置为1001至3000M,...
编译安装httpd 1 去官网下载源码包 为避免非法软件,一定要去官网下载http://www.apache.org httpd-2.4...
gdisk用法 gdisk - InteractiveGUIDpartitiontable (GPT) manipulator GPTfdisk (akagdisk) isatext-mo...
1 一定用快捷键 这里简单的说下几个常用的快捷按键。 1.1 移动光标快捷键 Crtl + a 光标回到命令行...
bash shell中测试命令 test命令提供了if-than语句中测试不同条件的途径。如果test命令中列出的条件成立...