test.log 2>&1 &am..._shell脚本启停linux服务">
当前位置:   article > 正文

shell脚本实现Linux启停服务,Linux—微服务启停shell脚本编写模板

shell脚本启停linux服务

run.sh#!/bin/bashif [ -s java.pid ]then echo "重复启动,退出" exit 0fijar_file=`ls *.jar | head -n 1`echo $jar_filejava -Djava.security.egd=file:/dev/./urandom -jar $jar_file > test.log 2>&1 &echo $! > java.pid

带有debug的run.sh#!/bin/bashif [ -s java.pid ]then echo "重复启动,退出" exit 0fijar_file=`ls *.jar | head -n 1`echo $jar_filejava -Djava.security.egd=file:/dev/./urandom -agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=8000 -jar $jar_file > test.log 2>&1 &echo $! > java.pid

通过-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=8000来指定debug端口为8000

指定配置文件的run.sh#!/bin/bashif [ -s java.pid ]then echo "重复启动,退出" exit 0fijar_file=`ls *.jar | head -n 1`echo $jar_filejava -Djava.security.egd=file:/dev/./urandom -jar $jar_file --spring.profiles.active=test > test.log 2>&1 &echo $! > java.pid

假如需要指定某个配置文件,可以通过--spring.profiles.active=test来指定。

stop.sh#!/bin/bashif [ -s java.pid ]then kill -9 `cat java.pid` && : > java.pidfi

使用方式

将run.sh和stop.sh和xxxx.jar包放同一目录

声明:本文内容由网友自发贡献,转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号