いいえのために使用される以下のスクリプト (/support/memexsvr_count) があります。アプリケーションにログインしている現在のユーザーの数。
手動で実行すると、crontab を介して実行されるため、出力が異なります。誰でもすぐにアドバイスできますか。
crontab
#Count
* * * * * /support/memexsvr_count.sh
脚本
x=`(date)`
y=`(ps -ef|grep memexsvr|wc -l)`
z=`expr $y - 3`
echo "Number of memexsvr processes at $x is $z" >> /support/memexsvr_count.log
手動運転:出力
Number of memexsvr processes at Tuesday, 10 September 2013 14:30:26 BST is 0
Cronjob : 出力
Number of memexsvr processes at Tue Sep 10 14:59:00 BST 2013 is 3