标签:只读 系统 conf delete 运行 启动服务 rsync -- 客户端
rpm -qa rsync
#安装
yum -y install rsync
#卸载
yum remove rsync
sudo rsync --daemon --config=/etc/rsyncd.conf
假设有一个目录为/data/test要同步。
# SYNC守护进程的用户 uid = root # 运行RSYNC守护进程的组 gid = root # 不使用chroot use chroot = no # 最大连接数是4 max connections = 4 # pid文件存放位置 pid file = /var/run/rsyncd.pid # 锁文件存放位置 lock file = /var/run/rsync.lock # 日志文件存放位置 log file = /var/log/rsyncd.log [mytest] # 要同步的目录 path = /home/clinyong/backup/mysql # 忽略无关的IO错误 ignore errors # 只读,不能上传 read only = true # 禁止查看文件列表 list = false # 允许访问服务的ip # hosts allow = 192.168.1.200 # 禁止访问服务的ip # hosts deny = 0.0.0.0/32 # 认证的用户名,系统必须存在的用户,但是密码需要在secrets file 配置,不是系统的密码。 auth users = mzx # 认证用户密码文件,配置auth users的密码 secrets file = /etc/backserver.pas
其中【mytest】自定义可以修改吗,客户端需要用,上面的认证用户必须是系统中存在的用户。
sudo vim /etc/backserver.pas sudo chown root:root /etc/backserver.pas sudo chmod 600 /etc/backserver.pas
在配置文件中设置账号密码
mzx:123456
每个用户一行,冒号前是用户,后面是密码。然后启动服务
sudo rsync --daemon --config=/etc/rsyncd.conf
然后加入开机自启
echo ‘rsync --daemon --config=/etc/rsyncd.conf‘ >> /etc/rc.d/rc.local
1.先创建密码文件,用于同步时验证
vim root/rsyncd.secrets chmod 600 root/rsyncd.secrets
只需要在文件中加入密码即可
123456
然后运行
rsync -avz --delete --password-file=/root/rsyncd.secrets mzx@your_ip::mytest /需要同步的目录
标签:只读 系统 conf delete 运行 启动服务 rsync -- 客户端
原文地址:https://www.cnblogs.com/mengyixin/p/9909296.html