运维经验分享(七)-- Linux Shell之ChatterServer服务控制脚本第三次优化

简介:
原创作品,允许转载,转载时请务必以超链接形式标明文章  原始出处 、作者信息和本声明。否则将追究法律责任。 http://dgd2010.blog.51cto.com/1539422/1677214

运维经验分享作为一个专题,目前共7篇文章

  1. 运维经验分享(一)-- Linux Shell之ChatterServer服务控制脚本

  2. 运维经验分享(二)-- Linux Shell之ChatterServer服务控制脚本二次优化

  3. 运维经验分享(三)-- 解决Ubuntu下crontab不能正确执行Shell脚本的问题(一)

  4. 运维经验分享(四)--关于 java进程管理的服务控制脚本编程思路分析

  5. 运维经验分享(五)-- 改进的java进程管理的服务控制脚本

  6. 运维经验分享(六)-- 深究crontab不能正确执行Shell脚本的问题(二)

  7. 运维经验分享(七)-- Linux Shell之ChatterServer服务控制脚本第三次优化

====================================分割线======================================

刚接到开发人员要求,今晚上线新的ChatterServer版本,新版本目录存在一些变化,要求我出一个新的服务控制脚本,因此在前两版的基础上有了第三版,前两版地址《运维经验分享(一)-- Linux Shell之ChatterServer服务控制脚本》和《运维经验分享(二)-- Linux Shell之ChatterServer服务控制脚本二次优化

增加softlink invoke和今天改良的shell脚本中的一些好的方法和技巧,今天改良的shell脚本请参考文章《运维经验分享(五)-- 改进的java进程管理的服务控制脚本》。

有几个已知的问题:

  1. BASENAME因为时间原因使用了绝对路径,后期将更新新版

  2. log日志的某些处理上有些多余,将于后期更新新版

其他问题欢迎各位网友、博友批评指正和留言!

现将脚本内容粘贴如下:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
#!/bin/bash
#chkconfig: 345 86 14
#description: Startup and shutdown script for ChatterServer(Port:$SERVICEPORT)
 
# Public header
# resolve links - $0 may be a softlink
PRG= "$0"
while  [ -h  "$PRG"  ];  do
   ls =` ls  -ld  "$PRG" `
   link=` expr  "$ls"  '.*-> \(.*\)$' `
   if  expr  "$link"  '/.*'  /dev/null then
     PRG= "$link"
   else
     PRG=` dirname  "$PRG" `/ "$link"
   fi
done
# Get standard environment variables
PRGDIR=` dirname  "$PRG" `
# Public header
WORKDIR=$PRGDIR
# end public header
# -Public header
 
#BASEDIR=..
BASEDIR= /data/chatter
VERSION=1.0.0-snapshot
SERVER=$BASEDIR /chatter- $VERSION\.jar
LOGDIR=$BASEDIR /logs
if  [[ ! -d $LOGDIR ]];  then
     mkdir  $LOGDIR
fi
PORTFILE=$BASEDIR /conf/constant .properties
# TODO
# reslove dos2unix packages
SERVICEPORT=$( cat  $PORTFILE | dos2unix |  grep  ^port |  awk  -F  '='  '{print $2}' )
PIDFILE=$LOGDIR /chatter .pid
BASENAME=chatter
ARGS= "-Xms4g -Xmx8g -Xmn8g -Xss256k -XX:MaxPermSize=64m -XX:-UseParallelGC -XX:+UseParallelOldGC -XX:ParallelGCThreads=4 -XX:+UseConcMarkSweepGC -XX:MaxTenuringThreshold=30 -XX:SurvivorRatio=6"
# -Xms2g -Xmx2g -Xmn2g -Xss128k -XX:MaxPermSize=64m -XX:-UseParallelGC -XX:+UseParallelOldGC -XX:ParallelGCThreads=4 -XX:+UseConcMarkSweepGC -XX:MaxTenuringThreshold=30 -XX:SurvivorRatio=6
 
status() {
     if  [[ ! -f $PIDFILE ]];  then
         echo  "ERROR: ChatterServer(Port:$SERVICEPORT) pid file is NOT exist"
         exit  1
     fi
     if  [[ ! -d  /proc/ $( cat  $PIDFILE) ]];  then
             echo  "ERROR:  ChatterServer(Port:$SERVICEPORT) is NOT running"
             exit  1
     else
             echo  "SUCCESS: ChatterServer(Port:$SERVICEPORT) pid($(cat $PIDFILE)) is OK"
     fi
     # The judgment priority: pid > port > piffile
     # netstat run by common user will get some error output, so we put those error outout to /dev/null
     if  [[ $( netstat  -anop 2> /dev/null  grep  $SERVICEPORT |  grep  LISTEN) ]]; then
         echo  "SUCCESS: ChatterServer(Port:$SERVICEPORT) is OK"
     else
         echo  "ERROR: ChatterServer(Port:$SERVICEPORT) port is NOT listen"
         exit  1
     fi
}
 
start() {
     if  [[ -e $PIDFILE ]];  then
         if  [[ -d  /proc/ $( cat  $PIDFILE) ]];  then
             echo  "ERROR: pidfile $PIDFILE exist, ChatterServer(Port:$SERVICEPORT) has started with pid $(cat $PIDFILE)"
             ## pid file can be deleted
             #/bin/rm -f $PIDFILE
             exit  1
         fi
     fi
     if  [[ -e $SERVER ]];  then
         echo  "INFO: Starting ChatterServer(Port:$SERVICEPORT)"
         # Start ChatterServer core daemon
         # Why using "date +"%Y%m%d""? Because we just need restart this once per day
         # For ChatterServer wiil find some file in $BASEDIR
         #cd $LOGDIR/../
         cd  $BASEDIR
         ## TODO 
         ## Because current directory has changed 
     #SERVER=./chatter-$VERSION\.jar
         #LOGDIR=./logs
         #nohup java -jar $SERVER $ARGS >>$LOGDIR/console-$(date +"%Y%m%d").out 2>&1 &
         if  java -jar $SERVER $ARGS >>$LOGDIR /console .out 2>&1 &
         then
             sleep  2
             if  [[ -d  /proc/ $! ]];  then
                 echo  $! > $PIDFILE
                 echo  "SUCCESS: ChatterServer(Port:$SERVICEPORT) start OK"
                 echo  "[ $(date +" %D %T ") ] SUCCESS: ChatterServer(Port:$SERVICEPORT) started with pid $(cat $PIDFILE) "  >>$LOGDIR /service .log
             fi
         elif  java -jar $SERVER $ARGS >>$LOGDIR /console .out 2>&1 &
         then
             sleep  2
             if  [[ -d  /proc/ $! ]];  then
                 echo  $! > $PIDFILE
                 echo  "SUCCESS: ChatterServer(Port:$SERVICEPORT) start OK"
                 echo  "[ $(date +" %D %T ") ] SUCCESS: ChatterServer(Port:$SERVICEPORT) started with pid $(cat $PIDFILE) "  >>$LOGDIR /service .log
             fi
         else
             echo  "ERROR: ChatterServer(Port:$SERVICEPORT) start failed"
             # Setting up start log 
             echo  "[ $(date +" %D %T ") ] ERROR: ChatterServer(Port:$SERVICEPORT) start failed "  >>$LOGDIR /service .log
             exit  $RETVAL
         fi
     else
         echo  "ERROR: Couldn't find $SERVER"
         # TODO We just think this is not essential
         # Do NOT setting up log here
         exit  1
     fi
 
}
stop() {
     if  [[ -e $PIDFILE ]];  then
         pid=$( cat  $PIDFILE)
         #if kill -TERM $PIDFILE >/dev/null 2>&1
         # TODO remove debug info
         #echo "DEBUG: $LOGDIR/console-$(date +"%Y%m%d").out"
         # Ubuntu can NOT use "usleep", so use "sleep" instead
         # usleep 100000 
         if  kill  -TERM $pid >>$LOGDIR /console- $( date  + "%Y%m%d" ).out &&  sleep  1
             then
             if  test  -d  /proc/ $( cat  $PIDFILE)
             then
                 sleep  60
             else
                 echo  "SUCCESS: ChatterServer(Port:$SERVICEPORT) stop OK with TERM"
                 # Setting up stop log 
                 echo  "[ $(date +" %D %T ") ] SUCCESS: ChatterServer(Port:$SERVICEPORT) stop OK with TERM "  >>$LOGDIR /service .log
                 # Because we can NOT use usleep , so we must comment out sleep 1 next
                 #sleep 1
                 # Ubuntu can NOT use "usleep", so use "sleep" instead
                 # usleep 100000 
                 # Remove pid file
                 /bin/rm  $PIDFILE
             fi
         elif  kill  -KILL $pid > /dev/null  2>&1 &&  sleep  1
             then
                 if  test  -d  /proc/ $( cat  $PIDFILE)
                 then
                 sleep  60
                 else
                     echo  "SUCCESS: ChatterServer(Port:$SERVICEPORT) stop OK with KILL"
                     # Setting up stop log 
                     echo  "[ $(date +" %D %T ") ] SUCCESS: ChatterServer(Port:$SERVICEPORT) stop OK with KILL "  >>$LOGDIR /service .log
                     # Because we can NOT use usleep , so we must comment out sleep 1 next 
                     #sleep 1
                     # Remove pid file
                     /bin/rm  $PIDFILE
                 fi
         elif  kill  -9 ` cat  $PIDFILE` >>$LOGDIR /console .out 2>&1
         then
             while  [[ -d  /proc/ $( cat  $PIDFILE) ]];  do
                 leep 1
             done
             if  test  -d  /proc/ $( cat  $PIDFILE)
             then
                 echo  "server stop failed"
                 exit  1
             else
                 echo  "SUCCESS: ChatterServer(Port:$SERVICEPORT) stop OK with KILL"
                 # Setting up stop log 
                 echo  "[ $(date +" %D %T ") ] SUCCESS: ChatterServer(Port:$SERVICEPORT) stop OK with KILL "  >>$LOGDIR /service .log
                 # Because we can NOT use usleep , so we must comment out sleep 1 next 
                 #sleep 1
                 # Remove pid file
                 /bin/rm  $PIDFILE
             fi
         else
             echo  "ERROR: ChatterServer(Port:$SERVICEPORT) stop faild"
             # Setting up stop log 
             echo  "[ $(date +" %D %T ") ] ERROR: ChatterServer(Port:$SERVICEPORT) stop failed "  >>$LOGDIR /service .log
             exit  1
         fi
     else
         echo  "ERROR: No ChatterServer(Port:$SERVICEPORT) running"
         # TODO We just think this is not essential
         # Do NOT setting up log here
         exit  1
     fi
}
 
restart() {
     echo  "INFO: Restarting ChatterServer(Port:$SERVICEPORT)"
     stop
     # # Those lines will remove in next release
     # if [[ $(netstat -anop 2>/dev/null | grep $SERVICEPORT | grep LISTEN) ]]; then
     #     echo "WARNNING: port $SERVICEPORT is in using, must waiting"
     #     sleep 5
     #     if [[ $(netstat -anop 2>/dev/null | grep $SERVICEPORT | grep LISTEN) ]]; then
     #         echo "WARNNING : port $SERVICEPORT is still in using, must waiting"
     #         sleep 2
     #     fi
     # fi
     # -Those lines will remove in next release
     # Do NOT using sleep any seconds here with stop() function used
     start
}
 
case  $1  in
     status)
         status
         ;;
     start)
         start
         ;;
     stop)
         stop
         ;;
     restart)
         restart
         ;;
     help|*)
         echo  "Usage: $0 {status|start|stop|restart|help} with $0 itself"
         exit  1
         ;;
esac
# replace "exit 0" with ":"
#exit 0
:

====================================分割线======================================

运维经验分享作为一个专题,目前共7篇文章

  1. 运维经验分享(一)-- Linux Shell之ChatterServer服务控制脚本

  2. 运维经验分享(二)-- Linux Shell之ChatterServer服务控制脚本二次优化

  3. 运维经验分享(三)-- 解决Ubuntu下crontab不能正确执行Shell脚本的问题(一)

  4. 运维经验分享(四)--关于 java进程管理的服务控制脚本编程思路分析

  5. 运维经验分享(五)-- 改进的java进程管理的服务控制脚本

  6. 运维经验分享(六)-- 深究crontab不能正确执行Shell脚本的问题(二)

  7. 运维经验分享(七)-- Linux Shell之ChatterServer服务控制脚本第三次优化

本文出自 “通信,我的最爱” 博客,请务必保留此出处http://dgd2010.blog.51cto.com/1539422/1677214

目录
相关文章
|
1月前
|
人工智能 运维 自然语言处理
别再靠“救火”过日子了:智能运维,正在重塑IT服务的未来
别再靠“救火”过日子了:智能运维,正在重塑IT服务的未来
253 15
|
2月前
|
机器学习/深度学习 人工智能 运维
运维不只是“修电脑”:聊聊运维如何助力 AI 优化服务质量
运维不只是“修电脑”:聊聊运维如何助力 AI 优化服务质量
221 9
|
1月前
|
Linux 网络安全 Docker
盘古栈云,创建带ssh服务的linux容器
创建带ssh服务的linux容器
272 146
|
1月前
|
运维 Prometheus 监控
别再“亡羊补牢”了!——聊聊如何优化企业的IT运维监控架构
别再“亡羊补牢”了!——聊聊如何优化企业的IT运维监控架构
102 8
|
2月前
|
缓存 安全 Linux
六、Linux核心服务与包管理
在没有网络的情况下,使用系统安装光盘是获取RPM包的常用方法。场景二:配置本地文件镜像源 (使用系统安装光盘/ISO)(检查RPM包的GPG签名以保证安全) 或。YUM/DNF包管理工具 (yum/dnf)(此处可以放置您为本主题制作的思维导图)处理依赖问题的危险选项 (应极力避免)(覆盖文件、替换已安装包)。(list) 则是列出文件。(query file) 是。(假设系统安装光盘已挂载到。信息 (verbose)。(upgrade) 选项。(all) 已安装的包。(package) 选项
326 11
|
2月前
|
存储 安全 Unix
七、Linux Shell 与脚本基础
别再一遍遍地敲重复的命令了,把它们写进Shell脚本,就能一键搞定。脚本本质上就是个存着一堆命令的文本文件,但要让它“活”起来,有几个关键点:文件开头最好用#!/usr/bin/env bash来指定解释器,并用chmod +x给它执行权限。执行时也有讲究:./script.sh是在一个新“房间”(子Shell)里跑,不影响你;而source script.sh是在当前“房间”里跑,适合用来加载环境变量和配置文件。
412 9
|
2月前
|
存储 运维 监控
云存储账单太吓人?教你几招运维优化省钱大法
云存储账单太吓人?教你几招运维优化省钱大法
238 9
|
2月前
|
存储 Shell Linux
八、Linux Shell 脚本:变量与字符串
Shell脚本里的变量就像一个个贴着标签的“箱子”。装东西(赋值)时,=两边千万不能有空格。用单引号''装进去的东西会原封不动,用双引号""则会让里面的$变量先“变身”再装箱。默认箱子只能在当前“房间”(Shell进程)用,想让隔壁房间(子进程)也能看到,就得给箱子盖个export的“出口”戳。此外,Shell还自带了$?(上条命令的成绩单)和$1(别人递进来的第一个包裹)等许多特殊箱子,非常有用。
299 2
|
2月前
|
运维 Linux 网络安全
自动化真能省钱?聊聊运维自动化如何帮企业优化IT成本
自动化真能省钱?聊聊运维自动化如何帮企业优化IT成本
109 4
|
1月前
|
存储 运维 监控
57_大模型监控与运维:构建稳定可靠的服务体系
随着大语言模型(LLM)技术的快速发展和广泛应用,如何确保模型在生产环境中的稳定运行、高效服务和安全合规已成为企业和开发者面临的关键挑战。2025年,大模型服务已从实验室走向各行各业的核心业务流程,其运维复杂度也随之呈指数级增长。与传统软件系统不同,大模型服务具有参数规模庞大、计算密集、行为不确定性高等特点,这使得传统的运维监控体系难以满足需求。