springboot linux 启动jar包

普通启动,关闭当前窗口,程序关闭(不推荐使用)

 java -jar xxx.jar 

后台启动命令

nohup java -jar xxx.jar > nohup.out  2>&1 &

 后台启动命令将日志文件放到黑洞中

nohup java -jar xxx.jar > /dev/null 2>&1 &

 启动指定环境

nohup java -jar -Dspring.profiles.active=dev xxx.jar > nohup.out  2>&1 &
posted @ 2022-07-11 15:35  译林  阅读(214)  评论(0编辑  收藏  举报