linux开机自启的方法比较多,systemctl算是一个比较麻烦的方法,但是比较稳定。
systemd有系统和用户区分;
系统/user/lib/systemd/system/
用户/etc/lib/systemd/user/)
一般系统管理员手工创建的单元文件建议存放在
/etc/systemd/system/目录下面
[Unit]
Description=nginx - high performance web server
# 描述
Documentation=http://nginx.org/en/docs/
# 文档
After=network.target remote-fs.target nss-lookup.target
# 启动顺序
[Service]
Type=forking/simple/oneshot/...
# 启动类型
PIDFile=/run/nginx.pid
# pid
ExecStartPre=/usr/sbin/nginx -t -c /etc/nginx/nginx.conf
ExecStart=/usr/sbin/nginx -c /etc/nginx/nginx.conf
ExecReload=/bin/kill -s HUP $MAINPID
# 启动命令或者脚本
ExecStop=/bin/kill -s QUIT $MAINPID
# 停止命令
PrivateTmp=true
[Install]
WantedBy=multi-user.target
# 单元被允许运行需要的弱依赖性单元
常用命令:
systemctl enable xxx.service
# 激活
systemctl enable xxx.service
# 停用
systemctl start xxx.service
#开启
systemctl restart xxx.service
# 重启
systemctl stop xxx.service
# 关闭
systemctl status xxx.service
# 状态
上一篇:
openvz的vps开启bbr下一篇:
snapd下载使用代理