Windows XP Windows 7 Windows 2003 Windows Vista Windows教程綜合 Linux 系統教程
Windows 10 Windows 8 Windows 2008 Windows NT Windows Server 電腦軟件教程
 Windows教程網 >> Linux系統教程 >> Linux教程 >> 如何判斷服務是否運行的shell腳本

如何判斷服務是否運行的shell腳本

日期:2017/2/7 14:41:07      編輯:Linux教程
 

用pgrep命令判斷

#!/bin/bash
##作用:檢測服務是否啟動,服務以參數方式提交
##作者:Barlow ##
##時間:2013-3-18 ##
ser=`/usr/bin/pgrep $1`
if [ "$ser" != "" ]
then
echo "The $1 service is running."
else
echo "The $1 service is NOT running."
/sbin/service $1 start
fi

Copyright © Windows教程網 All Rights Reserved