我是靠谱客的博主 阔达口红,最近开发中收集的这篇文章主要介绍启动rsync服务的脚本并能用chkconfig管理1. 创建脚本2. 脚本前端加入3. 拷贝到/etc/init.d目录4. 加入chkconfig5. 启动服务,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

1. 创建脚本

# Description: 
#!/bin/bash
# chkconfig: 2345 31 61                       # 设置chkconfig 级别
# description: start or stop rsync daemon     # 描述  

. /etc/init.d/functions
pidfile=/var/run/rsyncd.pid
RETVAL=0
start_rsync(){
if [ -f $pidfile ];then                       # 判断pid文件,存在就不再启动
    echo "Rsync is already running"
else
    rsync --daemon
    action "Rsync starts successfully "  /bin/true
fi 
}
stop_rsync(){
if [ -f $pidfile ];then
    kill -USR2 `cat $pidfile`
    rm -rf $pidfile                            # 停止服务,就删除pid文件
    action "Rsync stops successfully" /bin/true
else 
    action "Rsync is already stopped.Stop Failed" /bin/false    
fi
}
case "$1" in 
    start)
        start_rsync
        RETVAL=$?
        ;;
    stop)
        stop_rsync
        RETVAL=$?
        ;;
    restart)
        stop_rsync
        sleep 2
        start_rsync
        RETVAL=$?
        ;;
    *)
        echo "Usage:$0 start|stop|restart"
        exit 1      
esac
exit $RETVAL

2. 脚本前端加入

# chkconfig: 2345 31 61
# description: start or stop rsync daemon

3. 拷贝到/etc/init.d目录

cp rsync.sh /etc/init.d/rsyncd
cd /etc/init.d
chmod +x rsyncd

4. 加入chkconfig

chkconfig --add rsyncd
chkconfig --list rsyncd
syncd           0:off   1:off   2:on    3:on    4:on    5:on    6:off

5. 启动服务

service rsyncd start 
#因为是根据/var/run/rsyncd.pid是否存在判断进程是否开启,第一次启动时确保没有该pid文件

最后

以上就是阔达口红为你收集整理的启动rsync服务的脚本并能用chkconfig管理1. 创建脚本2. 脚本前端加入3. 拷贝到/etc/init.d目录4. 加入chkconfig5. 启动服务的全部内容,希望文章能够帮你解决启动rsync服务的脚本并能用chkconfig管理1. 创建脚本2. 脚本前端加入3. 拷贝到/etc/init.d目录4. 加入chkconfig5. 启动服务所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(48)

评论列表共有 0 条评论

立即
投稿
返回
顶部