3. 添加系统服务¶
创建hello.service服务的过程已经在 探索Systemd 讲解过了, 为了和后面的文档对应,这里我们再单独作为一个章节进行讲解,更多Systemd相关内容请查看 探索Systemd 章节。
本章节适用于已经将镜像烧录到板卡并正常启动系统的情况。
3.1. 编写脚本¶
cd进入/opt目录下,使用vim编写一个hello.sh脚本。
1 2 3 4 5 6 7 | #!/bin/bash
while true
do
echo Hello Lubancat >> /tmp/hello.log
sleep 3
done
|
该脚本实现的功能是每隔3秒就打印“Hello Lubancat”字符串到/tmp/hello.log文件中。 编写好后记得赋予hello.sh可执行权限。
sudo chmod 0755 hello.sh
3.2. 创建配置文件¶
在/etc/systemd/system/目录下创建一个hello.service配置文件,内容如下。
1 2 3 4 5 6 7 8 9 10 | [Unit]
Description = hello daemon
[Service]
ExecStart = /opt/hello.sh
Restart = always
Type = simple
[Install]
WantedBy = multi-user.target
|
其中ExecStart字段定义了hello.service服务的自启动脚本为/opt/hello.sh, 当我们使能了hello.service开机自启功能,在开机后便会执行/opt/hello.sh。 Restart = always表示指进程或服务意外故障的时候可以自动重启的模式。 Type = simple为默认的,可以不填。
3.3. 使能hello.service开机自启功能¶
输入命令“sudo systemctl list-unit-files –type=service | grep hello” 查看hello.service是否被添加到了服务列表。
sudo systemctl list-unit-files --type=service | grep hello
可以看到hello.service处于disable状态,如果你输入上面命令后没有任何显示, 那你创建的服务就处理问题,需要仔细排查。我们输入下面命令使hello.service开机自启动。
sudo systemctl enable hello
sudo systemctl start hello
然后使用reboot命令重启系统, 启动系统后输入“sudo systemctl status hello”命令即可看到hello.service处于运行状态。
sudo systemctl status hello
cat /tmp/hello.log