Linux centos7下jar包发布成服务并开机自启

1:新建一个服务(device为服务名称)

vim /etc/systemd/system/device.service

2:编写脚本

Description:描述

PIDFile:pid

/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.212.b04-0.el7_6.x86_64/jre/bin/java 为Java安装位置(例子是openjdk)

/opt/device.jar  为jar包的所在位置

[Unit]
Description=device
After=syslog.target network.target remote-fs.target nss-lookup.target
	
[Service]
User=root
Type=simple
PIDFile=/run/device.pid
ExecStart=/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.212.b04-0.el7_6.x86_64/jre/bin/java -jar /opt/device.jar &
ExecStop=/bin/kill -15 $MAINPID
	
[Install]
WantedBy=multi-user.target

3:先运行

systemctl daemon-reload

4:运行

systemctl start device.service

5:停止

systemctl stop device.service

6:加入开机自启

systemctl enable device.service

看到这个表示加入开机自启成功

评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值