阿里云Cloud Toolkit 插件使用 : idea远程部署springboot程序

具体细节参见 在 IntelliJ IDEA 中部署应用到服务器-阿里云开发者社区 (aliyun.com),此处仅记录restart.sh脚本

source /etc/profile
ps -ef | grep java_hello-0.0.1-SNAPSHOT.jar | grep -v grep | awk '{print $2}' | xargs kill -9
nohup java -jar /root/myproject/java_hello/java_hello-0.0.1-SNAPSHOT.jar > /root/myproject/java_hello/nohup.log 2>&1 &  

杀死正在运行的jar包,并重启

tail -f /root/myproject/java_hello/nohup.log -n200

查看日志

posted @ 2021-10-18 10:08  春华_秋实  阅读(119)  评论(0编辑  收藏  举报