1、tmshutdown -y
停服务失败,或卡死
2、检查中心tuxedo服务进程(tuxedo服务端)
ps -aux|grep 'product'
ps aux|awk '{if($1=="product") print $2 " " $11}'
3、杀站点同步服务进程(tuxedo客户端):
ps aux|awk '{if($11~/^listener/) print $2}'|while read PID; do kill -9 $PID; done
4、杀中心tuxedo服务进程(tuxedo服务端):
ps aux|awk '{if($1=="product") print $2}'|while read PID; do kill -9 $PID; done
会连你的登录也杀了,重登一次就行了;
5、tmshutdown时仍报错报:tmshutdown: internal error: CMDTUX_CAT:766: ERROR: must run on master node
但是tmboot时显示所有服务已启动;
进程已经不在了,但是IPC资源还没释放;
执行ipcs可以看到没有释放的IPC资源;执行tmipcrm -y释放tuxedo IPC资源;再用ipcs检查,如果还有,执行ipcrm删除;
6、启动服务
tmboot -y
阅读(14246) | 评论(1) | 转发(0) |