Rsync的系统启动脚本

╄→尐↘猪︶ㄣ 提交于 2020-01-29 00:56:29
[root@m01 init.d]# vim rsyncd.sh 

#!/bin/bash
# chkconfig: 2345 99 98
#author:oldyang
choice=$1
STOP=/var/run/rsyncd.pid

start(){

    [ -f $STOP ] || rsync --daemon
}
stop(){

    [ -f $STOP ] && kill `cat /var/run/rsyncd.pid`
}
restart(){

    [ -f $STOP ] && kill `cat /var/run/rsyncd.pid`
}
case "$choice" in
        start)
        start
        ;;

        stop)
        stop
        ;;
        restart)
        restart
    sleep 1
    rsync --daemon
        ;;
        *)
        echo "Usage: input right CMD. EX: {start|restart|stop}"
        exit 1
esac

测试脚本

[root@m01 init.d]# sh rsyncd.sh start
[root@m01 init.d]# ss -lntup|grep rsync
tcp    LISTEN     0      5         *:873                   *:*                   users:(("rsync",pid=17562,fd=3))
tcp    LISTEN     0      5        :::873                  :::*                   users:(("rsync",pid=17562,fd=5))
[root@m01 init.d]# sh rsyncd.sh stop
[root@m01 init.d]# ss -lntup|grep rsync
[root@m01 init.d]# sh rsyncd.sh restart
[root@m01 init.d]# ss -lntup|grep rsync
tcp    LISTEN     0      5         *:873                   *:*                   users:(("rsync",pid=17577,fd=3))
tcp    LISTEN     0      5        :::873                  :::*                   users:(("rsync",pid=17577,fd=5))
[root@m01 init.d]# sh rsyncd.sh stop
[root@m01 init.d]# ss -lntup|grep rsync
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!