centos7安装配置rsync以及遇到问题

简介: 安装服务端安装软件:yum -y install rsync创建需同步的目录:mkdir -p /data编辑配置文件:vim /etc/rsyncd.confmotd file = /etc/rsyncd.

安装

服务端

安装软件:

yum  -y  install  rsync

创建需同步的目录:

mkdir  -p  /data

编辑配置文件:vim /etc/rsyncd.conf

motd file = /etc/rsyncd.motd
transfer logging = yes
log file = /var/log/rsyncd.log #日志存放路径
port = 873  #端口号
address = 192.168.0.37  #IP地址
uid = root #使用的用户名
gid = root  #使用的密码
use chroot = no
read only = no
max connections = 10
[common]
comment = rsync lee
path = /data
ignore errors
auth users = simops
secrets file = /etc/rsyncd.secrets
hosts allow = 192.168.0.0/255.255.255.0 #允许访问的地址段
hosts deny = *
list = false

UID = 0
GID = 0

创建用户密码:

echo  "simops:123456"  >  /etc/rsyncd.secrets
chmod  600  /etc/rsyncd.secrets

创建提示信息文件:

echo  "rsync simops"  >  /etc/rsyncd.motd

配置防火墙规则和关闭SElinux:

iptables  -I  INPUT  -p  tcp  --dport  873  -j  ACCEPT
setenforce 0 #临时关闭SElinux

启动服务:

rsync  --daemon
echo  "rsync  --daemon"  >>  /etc/rc.local

二、客户端(192.168.0.17):

安装软件:

yum  -y  install  rsync

创建需同步的目录:

mkdir  -p  /data

创建密码文件(免输入密码):

echo  "123456"  >  /root/passwd
chmod  600  /root/passwd

拉取:

rsync  -avz  --password-file=/root/passwd  simops@192.168.0.37::common  /data/

推送

rsync  -avz  --password-file=/root/passwd  /data  simops@192.168.0.37::common

遇到问题

1、执行推送命令之后报错

rsync  -avz  --password-file=/root/passwd  lee@192.168.0.37::common  /home/lee/rsync/
rsync  lee

@ERROR: invalid uid root #使用的用户名
rsync error: error starting client-server protocol (code 5) at main.c(1648) [Receiver=3.1.2]

解决方案在rsyncd.conf文件中添加下面两行即可解决问题

UID = 0 
GID = 0 

2、服务器端同步目录没有权限

rsync  -avz  --password-file=/root/passwd  simops@192.168.0.37::common  /home/lee/rsync/
rsync  lee

@ERROR: chdir failed
rsync error: error starting client-server protocol (code 5) at main.c(1648) [Receiver=3.1.2]

解决方案:服务器端同步目录没有权限,cwrsync默认用户是Svcwrsync。为同步目录添加用户Svcwrsync权限

3、没有关闭selinux

rsync  -avz  --password-file=/root/passwd simops@192.168.0.37::common  /data/
rsync  lee

receiving incremental file list
rsync: opendir "." (in common) failed: Permission denied (13)

sent 20 bytes  received 108 bytes  256.00 bytes/sec
total size is 0  speedup is 0.00
rsync error: some files/attrs were not transferred (see previous errors) (code 23) at main.c(1650) [generator=3.1.2]

这个问题看似已经同步可是去查看的时候没有同步过来
细细的检查了一下是selinux问题,关闭之后就可以了

目录
相关文章
|
1月前
|
Linux 网络安全 Apache
CentOS 7.2配置Apache服务httpd(上)
CentOS 7.2配置Apache服务httpd(上)
194 1
|
3月前
|
消息中间件 Linux API
centos7 安装rabbitmq自定义版本及配置
centos7 安装rabbitmq自定义版本及配置
|
11天前
|
关系型数据库 MySQL Linux
在 CentOS 7 中通过编译源码方式安装 MySQL 数据库的详细步骤,包括准备工作、下载源码、编译安装、配置 MySQL 服务、登录设置等。
本文介绍了在 CentOS 7 中通过编译源码方式安装 MySQL 数据库的详细步骤,包括准备工作、下载源码、编译安装、配置 MySQL 服务、登录设置等。同时,文章还对比了编译源码安装与使用 RPM 包安装的优缺点,帮助读者根据需求选择最合适的方法。通过具体案例,展示了编译源码安装的灵活性和定制性。
51 2
|
15天前
|
监控 安全 Linux
CentOS7下安装配置ntp服务的方法教程
通过以上步骤,您不仅能在CentOS 7系统中成功部署NTP服务,还能确保其配置合理、运行稳定,为系统时间的精确性提供保障。欲了解更多高级配置或遇到特定问题,提供了丰富的服务器管理和优化资源,可作为进一步学习和求助的平台。
32 1
|
25天前
|
Java jenkins 持续交付
Centos7下docker的jenkins下载并配置jdk与maven
通过上述步骤,您将成功在CentOS 7上的Docker容器中部署了Jenkins,并配置好了JDK与Maven,为持续集成和自动化构建打下了坚实基础。
78 1
|
27天前
|
存储 监控 Linux
在 CentOS 7 中如何对新硬盘进行分区、格式化、挂载及配置最佳实践
本文详细介绍了在 CentOS 7 中如何对新硬盘进行分区、格式化、挂载及配置最佳实践,包括使用 `fdisk` 创建分区、`mkfs` 格式化分区、创建挂载点、编辑 `/etc/fstab` 实现永久挂载等步骤,旨在有效管理服务器磁盘空间,提高系统稳定性和可维护性。
32 1
|
1月前
|
Linux PHP Apache
CentOS 7.2配置Apache服务httpd(下)
CentOS 7.2配置Apache服务httpd(下)
47 1
|
3月前
|
弹性计算 关系型数据库 MySQL
centos7 mysql安装及配置
本文详细介绍了在阿里云服务器ECS上通过yum源安装MySQL 8.0.12的过程,包括更新yum源、下载并安装MySQL源、解决安装过程中可能遇到的问题等步骤。此外,还介绍了如何启动MySQL服务、设置开机自启、配置登录密码、添加远程登录用户以及处理远程连接异常等问题。适合初学者参考,帮助快速搭建MySQL环境。
389 8
centos7 mysql安装及配置
|
2月前
|
Linux
CentOS 7.x时间同步服务chrony配置详解
文章详细介绍了在CentOS 7.x系统中如何安装和配置chrony服务,以及它与ntpd服务的对比,强调了chrony在时间同步方面的高效性和准确性。
160 1
CentOS 7.x时间同步服务chrony配置详解
|
28天前
|
安全 Linux 数据库连接
CentOS 7环境下DM8数据库的安装与配置
【10月更文挑战第16天】本文介绍了在 CentOS 7 环境下安装与配置达梦数据库(DM8)的详细步骤,包括安装前准备、创建安装用户、上传安装文件、解压并运行安装程序、初始化数据库实例、配置环境变量、启动数据库服务、配置数据库连接和参数、备份与恢复、以及安装后的安全设置、性能优化和定期维护等内容。通过这些步骤,可以顺利完成 DM8 的安装与配置。
179 0
下一篇
无影云桌面