Chinaunix首页 | 论坛 | 博客
  • 博客访问: 5352074
  • 博文数量: 1144
  • 博客积分: 11974
  • 博客等级: 上将
  • 技术积分: 12312
  • 用 户 组: 普通用户
  • 注册时间: 2005-04-13 20:06
文章存档

2017年(2)

2016年(14)

2015年(10)

2014年(28)

2013年(23)

2012年(29)

2011年(53)

2010年(86)

2009年(83)

2008年(43)

2007年(153)

2006年(575)

2005年(45)

分类: LINUX

2006-10-08 06:24:20

为了开机时以普通用户自动启动测试程序,并且以后每天测试一遍,再编写以下两个脚本。
第一个脚本:
# /home/mishuang/bin/start-stop

PID_FILE=/tmp/monitor.pid

case "$1" in
        start)
                if [ -f $PID_FILE ]
                then
                        echo "monitor already started!"
                        exit 1
                fi
                echo $$ > $PID_FILE
                while true
                do
                        seconds=$((24*60*60))
                        sleep $seconds
                        /home/mishuang/bin/monitor
                done
                ;;
        stop)
                if [ -f $PID_FILE ]
                then
                        pid=`cat $PID_FILE`
                        kill -9 $pid
                        echo "remove pid file"
                        rm -f $PID_FILE
                else
                        echo "monitor already terminated!"
                fi
                ;;
        restart)
                $0 stop
                sleep 1
                $0 start
                ;;
        *)
                printf "Usage: $0 {start|stop|restart}\n" >&2
                exit 1
                ;;
esac
exit 0

第二个脚本:
# /etc/init.d/monitor

case "$1" in
  start)
    su - mishuang /home/mishuang/bin/start-stop start &
    ;;
  stop)
    su - mishuang /home/mishuang/bin/start-stop stop
    ;;
  restart)
    $0 stop
    sleep 1
    $0 start
    ;;
  *)
    printf "Usage: $0 {start|stop|restart}\n" >&2
    exit 1
    ;;
esac
exit 0

最后chkconfig monitor on

阅读(1632) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~