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
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69915318/viewspace-2644947/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- redis叢集指導Redis
- Zookeeper-3.4.10 叢集的安裝配置
- Kubernetes安裝之三:etcd叢集的配置
- 安裝配置 zookeeper (單機非叢集模式)模式
- Elasticsearch 7.x 安裝及配置指導Elasticsearch
- 安裝Kafka叢集Kafka
- 安裝Consul叢集
- azkaban叢集模式安裝與execute-as-user配置模式
- 安裝docker指導Docker
- 完整安裝always on叢集
- 快速安裝 kafka 叢集Kafka
- Centos7安裝Nacos單機模式以及叢集模式(包含nignx安裝以及實現叢集)的相關配置CentOS模式
- 超詳細hadoop叢集伺服器安裝配置教程Hadoop伺服器
- redis-3.0.6 安裝叢集Redis
- redis 5.0 叢集的安裝Redis
- 安裝Zookeeper和Kafka叢集Kafka
- Redis操作及叢集搭建以及高可用配置Redis
- Zookeeper3.4.14(單叢集)、Kafka_2.12-2.2.2(叢集)安裝Kafka
- Ubuntu上kubeadm安裝Kubernetes叢集Ubuntu
- Redis安裝+叢集+效能監控Redis
- CDH安裝大資料叢集大資料
- CentOS7 安裝PG叢集CentOS
- Cloudera Manager安裝 & 搭建CDH叢集Cloud
- 安裝Greenplum 5.2 叢集實戰
- ARM架構安裝Kubernetes叢集架構
- redis偽叢集配置Cluster叢集模式Redis模式
- 在Ubuntu 18.04.1上安裝Hadoop叢集UbuntuHadoop
- Cassandra安裝及分散式叢集搭建分散式
- centos安裝k8s叢集CentOSK8S
- Ubuntu 安裝k8s叢集UbuntuK8S
- Kafka叢集配置Kafka
- Jedis操作單節點redis,叢集及redisTemplate操作redis叢集(一)Redis
- Redis for linux原始碼&叢集(cluster)&主從(master-slave)&哨兵(sentinel)安裝配置RedisLinux原始碼AST
- gbase叢集管理之伺服器配置互信及C3工具安裝伺服器
- kubernetes叢集的安裝異常彙總
- Redis安裝之叢集-哨兵模式(sentinel)模式Redis模式
- Linux原始碼安裝RabbitMQ高可用叢集Linux原始碼MQ
- 分散式 PostgreSQL 叢集(Citus)官方安裝指南分散式SQL