centos rsync安装配置
安装
|
1
|
yum -y install rsync |
---------------------服务器安装-------------------------------
创建基础配置文件
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#vim /etc/rsyncd.conf uid = root gid = root use chroot = no max connections = 5 pid file = /var/run/rsyncd.pid lock file = /var/run/rsync.lock log file = /var/log/rsyncd.log [www] path = /usr/local/nginx/html/down/ ignore errors read only = truelist = false auth users = rsync secrets file = /etc/rsync.pas |
创建密码配置文件
|
1
2
|
#vi /etc/rsync.pasrsync:yourpassword |
将rsync.pas设置为root所有, 权限为600
|
1
2
|
chown root.root /etc/rsync.pas chmod 600 /etc/rsync.pas |
启动:
|
1
|
/usr/bin/rsync --daemon |
打开防火墙设置873端口:编辑/etc/sysconfig/iptables文件,添加873端口
关闭selinux:打开/etc/selinux/config文件,修改SELINUX=disabled
------------------------------客户端安装-----------------------------------------
创建基础配置文件
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#vim /etc/rsyncd.confuid = root gid = root use chroot = no max connections = 5 pid file = /var/run/rsyncd.pid lock file = /var/run/rsync.lock log file = /var/log/rsyncd.log [www] path = /usr/local/test/ignore errors read only = truelist = false auth users = rsync secrets file = /etc/rsync.pas |
创建密码配置文件
|
1
2
|
#vi /etc/rsync.pasyourpassword |
将rsync.pas设置为root所有, 权限为600
|
1
2
|
chown root.root /etc/rsync.pas chmod 600 /etc/rsync.pas |
执行同步命令:
|
1
|
rsync -vrtup -R --delete rsync@10.10.10.10::www --password-file=/etc/rsync.pas /usr/local/test/ |
命令解析:
|
1
2
3
4
5
6
7
8
9
10
11
12
|
-v, --verbose 详细模式输出 -r, --recursive 对子目录以递归模式处理 -t, --times 保持文件时间信息 -u, --update 仅仅进行更新,也就是跳过所有已经存在于DST,并且文件时间晚于要备份的文件。(不覆盖更新的文件) -p, --perms 保持文件权限 rsync@10.10.10.10::wwwrsync - 登陆用户名10.10.10.10 - 服务器IPwww - 主配置文件中的段名--password-file=/etc/rsync.pas - 指定密码文件/usr/local/test/ - 要同步到的本地目标文件夹 |
设置自动运行脚本,每5秒执行一次同步
|
1
2
3
4
5
6
7
|
#!/bin/bashwhile [ 1 ]dorsync -vrtup -R rsync@10.10.10.10::www --delete --password-file=/etc/rsync.pas /usr/local/nginx/html/downsleep 5done |
设置脚本自启动:
在centos5 和 centos6中,方法不太一样。centos6可以参见另一篇文章:
http://hi.baidu.com/solohac/item/9a89bf4257a97eeaa5c066cd
centos rsync安装配置的更多相关文章
- Centos下安装配置LAMP(Linux+Apache+MySQL+PHP)
Centos下安装配置LAMP(Linux+Apache+MySQL+PHP) 关于LAMP的各种知识,还请大家自行百度谷歌,在这里就不详细的介绍了,今天主要是介绍一下在Centos下安装,搭建一 ...
- CentOS 7安装配置Apache HTTP Server
原文 CentOS 7安装配置Apache HTTP Server RPM安装httpd # yum -yinstall httpd //安装httpd会自动安装一下依赖包: apr apr-ut ...
- CentOS 7 安装配置 NFS
CentOS 7 安装配置 NFS 环境 nps 192.168.1.97 client 192.168.1.98 一.yum 安装 yum -y install nfs-utils rpcbind ...
- 分布式文件系统 FastDFS 5.0.5 & Linux CentOS 7 安装配置(单点安装)——第一篇
分布式文件系统 FastDFS 5.0.5 & Linux CentOS 7 安装配置(单点安装)--第一篇 简介 首先简单了解一下基础概念,FastDFS是一个开源的轻量级分布式文件系统,由 ...
- CentOS 7安装配置Samba服务器
CentOS 7安装配置Samba服务器 CentOS 7下Samba服务器安装配置过程笔记. 假设我们有这样一个场景 共享名 路径 权限 SHAREDOC /smb/docs 所有人员包括来宾均可以 ...
- CentOS 7安装配置Samba服务器(挂载共享文件夹)
CentOS 7安装配置Samba服务器 CentOS 7下Samba服务器安装配置过程笔记. 假设我们有这样一个场景 共享名 路径 权限 SHAREDOC /smb/docs 所有人员包括来宾均可以 ...
- 记录:CentOS 7 安装配置分布式文件系统 FastDFS 5.1.1
CentOS 7 安装配置分布式文件系统 FastDFS 5.1.1 软件下载:http://download.csdn.net/download/qingchunwuxian1993/9897458 ...
- CentOS gitlab 安装配置
CentOS gitlab 安装配置 2018-11-02 11:23:09 Visit 5 在/etc/yum.repos.d 目录下创建文件gitlab-ce.repo,使用国内的安装源 b ...
- <转>CentOS 7 安装配置 NFS
CentOS 7 安装配置 NFS 环境 nps 192.168.1.97 client 192.168.1.98 一.yum 安装 yum -y install nfs-utils rpcbind ...
随机推荐
- 解决spawn-fcgi child exited with: 1
spawn-fcgi -d /data/web/ad/ -f /data/web/ad/code.py -a -P /data/openresty_81/nginx/pid/ad.pid 出错的时候请 ...
- django中时区设置
通过django中的models更新数据库的DateTimeField字段,发现有错误,于是更改了: TIME_ZONE = 'Asia/Shanghai' 结果,还是不正确,于是把: USE_TZ ...
- angular factory Services provider 自定义服务 工厂
转载于 作者:海底苍鹰地址:http://blog.51yip.com/jsjquery/1602.html 1.在app.js 中声明了模块的依赖 var phonecatApp = angular ...
- html5 图片转base64预览显示
<!DOCTYPE HTML> <html> <head> <meta charset="utf-8"> <title> ...
- C# 加密算法
public static class Common { #region MD5加密 /// <summary> /// M ...
- c++ 实现百度自动搜索
void CAttendanceRobotDlg::DocumentCompleteExplorer4(LPDISPATCH pDisp, VARIANT* URL) { // TODO: Add y ...
- Bypass pattern lock on Sony Xperia Z2 and backup all data
Yesterday she came to me with a Sony Xperia Z2 D6503. Guess what? She forgot the pattern so she coul ...
- 017Makefile工程管理
1.为什么需要Makefile? 利用Makefile和make的合作,可以把很多很多的工作合并成一个非常简单的命令:make: make能够使整个程序的编译.链接只需要一个命令(make)就可以完成 ...
- 使用JDBC向数据库中插入一条数据(第一次修改版)
增加了一个Tools类,放了一些常用的工具 package com.JDBC.java; import java.io.IOException; import java.io.InputStream; ...
- DPDK内存管理-----(三)rte_malloc内存管理
rte_malloc()为程序运行过程中分配内存,模拟从堆中动态分配内存空间. void * rte_malloc(const char *type, size_t size, unsigned al ...