Linux服务开机自启
Posted Friends of the wind
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux服务开机自启相关的知识,希望对你有一定的参考价值。
第一种方式
一般是系统服务:
systemctl enable nginx
第二种方式
命令行中输入ntsysv,然后选择系统服务
第三种方式
配置到 /etc/systemd/system/
1)创建service文件
vim /etc/systemd/system/ServiceName.service
[Unit]
Description=ServiceName
After=syslog.target
[Service]
User=myapp
ExecStart=/var/myapp/myapp.jar
SuccessExitStatus=143
[Install]
WantedBy=multi-user.target
2)重载守护进程
systemctl daemon-reload
3)设置开机自启动服务
systemctl enable ServiceName.service
systemctl disable ServiceName.service 取销开机启动
4)验证:
以上是关于Linux服务开机自启的主要内容,如果未能解决你的问题,请参考以下文章