2016年5月3日 星期二

檢查 ulogd2 log to MySQL 是否正常執行

#!/bin/sh
# Check Ulogd2 + MySQL

PORT=$(netstat -anp|grep tcp|grep ESTABLISHED|grep :3306|grep ulogd)
PSS=$(ps |grep \[u]logd)

[ "$PSS" = "" ] && /etc/init.d/ulogd start
[ "$PORT" = "" ] && /etc/init.d/ulogd restart

沒有留言: