系统默认使用systemd管理系统服务,所以添加自启动应用需要编写配置文件
# vi /lib/systemd/system/demoapp.service
[unit]
Description=app demo
After=multi-user.target
[Service]
Type=simple
user=root
ExecStart=/usr/local/startapp.sh
#Restart=always
[Install]
WantedBy=multi-user.target
编写好后,配置服务启动
systemctl enable demoapp.service
作者:SteveChen 创建时间:2024-09-17 14:57
最后编辑:SteveChen 更新时间:2024-09-17 15:25
最后编辑:SteveChen 更新时间:2024-09-17 15:25