设置开机自启
Posted effortsing
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了设置开机自启相关的知识,希望对你有一定的参考价值。
1、添加开机自启文件
[[email protected] ~]# cat /lib/systemd/system/nginx.service
#!/bin/bash
[Unit]
Description=nginx
After=network.target
[Service]
Type=forking
ExecStart=/usr/local/nginx/sbin/nginx
ExecReload=/usr/local/nginx/sbin/nginx -s reload
ExecStop=/usr/local/nginx/sbin/nginx -s quit
PrivateTmp=true
[Install]
WantedBy=multi-user.target
2、设置nginx服务开机自启
[[email protected] ~]# systemctl enable nginx
以上是关于设置开机自启的主要内容,如果未能解决你的问题,请参考以下文章
Ubuntu20.04设置开机自启脚本开机自启命令(ubuntu自启,ubuntu开机自启)rc(run command)(systemd)(/etc/rc.local)(开机启动原理)