码迷,mamicode.com
首页 >  
搜索关键字:rsync启动脚本    ( 9个结果
rsync 启动脚本
#!/bin/bash . /etc/init.d/functions pidfile="/var/run/rsyncd.pid" start_rsync="rsync --daemon --config=/etc/rsyncd.conf" status1=$(ps -ef | egrep "rsy... ...
分类:其他好文   时间:2019-07-26 14:52:35    阅读次数:116
Shell开发rsync启动脚本
本文章讲述如何使用Shell 开发rsync启动脚本
分类:系统相关   时间:2018-10-15 12:00:47    阅读次数:166
rsync多模块配置&排除功能-003
一、 利用/etc/init.d/启动rsync服务方式 1、可以实现方式: a. 编写rsync启动脚本(有一定的shell能力 if case) b. 利用xinetd服务,管理启动rsync服务 2、利用 xinetd服务 管理rsync (1)安装xinetd软件 [root@backup ...
分类:其他好文   时间:2018-03-19 13:47:17    阅读次数:259
rsync启动脚本
#!/bin/sh#chkconfig:23452080#description:createbybai./etc/init.d/functionsjudge=`netstat-lntup|greprsync|wc-l`_start(){if[$judge-eq2]thenaction"rsyncisrunning"/bin/trueelsersync--daemonsleep1action"rsyncstarted"/bin/truefi}_stop(){if[`netstat-lntup|greprsyn..
分类:其他好文   时间:2017-08-31 11:09:06    阅读次数:180
rsync启动脚本
#!/bin/bash #chkconfig:23453050 #Date:2017-6-29 #Author:xcn(baishuchao@yeah.net) #version1.0 PID="/var/run/rsync.pid" start_rsync(){ if[-f$PID] then echo"rsyncisrunning" else rsync--daemon echo"rsyncisstarted" fi } stop_rsync(){ if[-f$PID]#存在而不为空 ..
分类:其他好文   时间:2017-06-29 22:22:55    阅读次数:104
rsync启动脚本编写
需求:写一个rsync服务启动脚本思路:1、首先对脚本参数个数进行判断如果传参个数不等于1,则echo"Usage:$0{start|restart|stop}"2、定义函数service,通过case进行对脚本传参值的流程控制判断3、启动服务采用命令rsync--daemon4、停止服务采用kill-9进程和删除rsync的PID文件[..
分类:其他好文   时间:2017-05-10 11:24:22    阅读次数:157
开发rsync启动脚本2
使用函数更加规范的开发rsync启动脚本 执行结果: ...
分类:其他好文   时间:2017-03-20 16:33:29    阅读次数:191
rsync服务端快速搭建
1.创建配置文件配置文件为不存在需要自己新建mkdir/etc/rsyncd touch/etc/rsyncd/rsyncd.conf#主配置文件; touch/etc/rsyncd/rsyncd.secrets#用户名密码配置文件; touch/etc/rsyncd/rsyncd.motd#连接时提示信息 chmod600/etc/rsyncd/rsyncd.secrets#将密码权限修改,增加安全性 ..
分类:其他好文   时间:2015-11-10 19:34:08    阅读次数:339
rsync启动脚本
rsync启动脚本01#!/bin/bash www.ahlinux.com 02#03# rsyncd Thisshellscript takes care of starting and stopping04# standalone rsync.05#06# chkconfig:...
分类:其他好文   时间:2015-01-15 12:18:09    阅读次数:178
9条  
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!