1、后台运行jar包方法:
nohup java -jar shareniu.jar &
nohup意为后台不挂断运行,与是否账号退出无关
2、后台运行,并将相关日志输出到spring.log
nohup java -jar shareniu.jar >spring.log &
3、关闭进程
//查询进程
ps -aux | grep '要查的进程吗'
//kill进程
kill -s 9 '查出来的进程id'
4、常用命令
//--发布项目
java -jar xx.jar
// --启动时指定端口
java -jar -Dserver.port=8090 xx.jar
// --启动时指定配置文件
java -jar -Dspring.profiles.active xx.jar