Java教程

springboot服务注册linux服务[测试可用]

本文主要是介绍springboot服务注册linux服务[测试可用],对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

基于Linux的Systemd部署

jar: springboot-test.jar

jar所在目录 /opt

在/etc/systemd/system/目录下新建文件springboot-test.service

[Unit]
Description=test
After=syslog.target
 
[Service]
ExecStart= java -jar /opt/springboot-test.jar
 
[Install]
WantedBy=multi-user.target

然后

systemctl daemon-reload

启动:

systemctl start springboot-test

停止:

systemctl stop springboot-test

服务状态:

systemctl status springboot-test

开机启动:

systemctl enable springboot-test

这篇关于springboot服务注册linux服务[测试可用]的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!