通过ps -Af|grep openfire 能够得到openfire进程的进程号(openfire没有stop的shell,真是蹩脚)
而在shell 脚本里很难通过 ps -Af|grep openfire 得到正在运行的openfire进程号,在网上找了好久也没有发现有一个好的办法,仔细想想在每次启动openfire时可以得进程号,然后把进程号写入一个文件中,当想要kill掉openfire进程时 先读取文件得到进程号 然后再kill 掉
所以代码分两步:第一步 修改openfire.sh(openfire的启动文件) 在开始地方 加入:echo $$>shuanglengfeng.pid 就会把进程号 写入shuanglengfeng.pid文件中。
第二步 获取shuanglengfeng.pid中进程号
#!/bin/bash
cat shuanglengfeng.pid | while read pid
do
echo $pid
kill -9 $pid
done
shell大致结构如此,这样就可以满足要求了。
阅读(1065) | 评论(0) | 转发(0) |