spring boot 部署为linux service

Posted 述而不做

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring boot 部署为linux service相关的知识,希望对你有一定的参考价值。

1.获取jar包权限
chmod 500 your-app.jar

 2.新建service文件:/etc/systemd/system/myapp.service

[Unit]
Description=myapp
After=syslog.target

[Service]
User=myapp
ExecStart=/var/myapp/myapp.jar
SuccessExitStatus=143

[Install]
WantedBy=multi-user.target

3.启用systemctl enable myapp.service

4.systemctl start myapp.service







以上是关于spring boot 部署为linux service的主要内容,如果未能解决你的问题,请参考以下文章

Spring Boot REST Controller 部署在外部 tomcat 9 服务器上时返回 404

Spring Boot 项目部署到 Linux服务器

linux部署spring-boot

将 Spring Boot 应用程序部署到外部 tomcat 服务器时,通过 application.properties 更改其端口

Spring Boot项目部署到Linux服务器(详细步骤)

spring boot jar 部署linux服务器