千家信息网

FreeSwitch+Opensips集群 安装配置操作指导

发表于:2024-10-01 作者:千家信息网编辑
千家信息网最后更新 2024年10月01日,1.1.1 rsync安装服务端与客户端都需要安装 rsync安装命令:yum install rsync1.1.2 rsync 服务端配置步骤 1:生成并编辑配置文件rsyncd.conf#touc
千家信息网最后更新 2024年10月01日FreeSwitch+Opensips集群 安装配置操作指导

1.1.1 rsync安装

服务端与客户端都需要安装 rsync

安装命令:

yum install rsync

1.1.2 rsync 服务端配置

步骤 1:生成并编辑配置文件rsyncd.conf

#touch /etc/rsyncd.conf #生成rsync的配置文件

#vi /etc/rsyncd.conf

具体内容如下所示(需要手动输入):

secrets file = /etc/rsyncd.secrets

read only = yes

list = yes

uid = root

gid = root

hosts allow = 10.3.4.219 #客户端IP地址,多个以空格分开

#hosts deny = 10.4.5.0/24

use chroot = no

max connections = 10

log file = /var/log/rsyncd.log

pid file = /var/run/rsyncd.pid

lock file = /var/run/rsync.lock

charset=GBK

[rsyncd]

comment = pag's directory #自己添加说明

path = /home/test #要同步的目录

auth users = rsync #使用的用户

secrets file = /etc/rsyncd.secrets

步骤 2:生成验证文件

# echo "rsync:rsync" > /etc/rsyncd.secrets rsync:rsync为用户和密码,格式为user:passwd)

# chown root:root /etc/rsyncd.secrets


0