centos 运维 jar 包脚本
新建sh 文件
#!/bin/bash
# Define variables
JAR_FILE="your-application.jar"
JAVA_OPTS="-Xmx512m -Xms256m"
PID_FILE="pid.txt"
# Function to check if the application is running
is_running() {
[ -f "$PID_FILE" ] && ps -p "$(cat "$PID_FILE")" &> /dev/null
}
# Function to start the application
start() {
if is_running; then
echo "Application is already running."
else
nohup java $JAVA_OPTS -jar "$JAR_FILE" > /dev/null 2>&1 &
echo $! > "$PID_FILE"
echo "Application started."
fi
}
# Function to stop the application
stop() {
if is_running; then
kill "$(cat "$PID_FILE")"
rm "$PID_FILE"
echo "Application stopped."
else
echo "Application is not running."
fi
}
# Function to restart the application
restart() {
stop
start
}
# Main script logic
case "$1" in
start)
start
;;
stop)
stop
;;
restart)
restart
;;
status)
if is_running; then
echo "Application is running."
else
echo "Application is not running."
fi
;;
*)
echo "Usage: $0 {start|stop|restart|status}"
exit 1
;;
esac
exit 0
启动 sh xxx.sh start
关闭 sh xxx.sh stop
重启sh xxx.sh restart
如果报类似于下面的错
com.sh: line 3: $'\r': command not found
com.sh: line 6: $'\r': command not found
com.sh: line 9: $'\r': command not found
com.sh: line 11: syntax error near unexpected token `$'{\r''
'om.sh: line 11: `stop() {
表明脚本具有 Windows 样式的行结尾(CRLF、回车 + 换行),类 Unix 系统无法正确识别它们。
要解决此问题,您可以使用文本编辑器或命令行工具将行结尾转换为 Unix 样式(LF、换行)。有几种方法可以做到这一点:
使用dos2unix:
sudo yum install dos2unix
dos2unix xxx.sh
然后再运行就行了
作者:冰莫莫
出处:https://www.cnblogs.com/icemomo/p/17892637.html
版权:本作品采用「署名-非商业性使用-相同方式共享 4.0 国际」许可协议进行许可。
转载请注明出处
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】凌霞软件回馈社区,博客园 & 1Panel & Halo 联合会员上线
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】博客园社区专享云产品让利特惠,阿里云新客6.5折上折
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 【.NET】调用本地 Deepseek 模型
· CSnakes vs Python.NET:高效嵌入与灵活互通的跨语言方案对比
· DeepSeek “源神”启动!「GitHub 热点速览」
· 我与微信审核的“相爱相杀”看个人小程序副业
· Plotly.NET 一个为 .NET 打造的强大开源交互式图表库