NFS檔案共享配置

2021-09-22 14:12:37 字數 2341 閱讀 6967

nfs client 掛載解除安裝

解除安裝使用umount

# umount /usr/

local/freeswitch/conf

rsync檔案同步配置

rsync介紹

rsync是類linux系統下的資料映象備份工具——remote sync。一款快速增量備份工具 remote sync,遠端同步。支援本地複製,或者與其他ssh、rsync主機同步。

這個工具可以作為freeswitch跨資料中心節點的配置檔案的同步。

rsync安裝

服務端與客戶端都需要安裝rsync

安裝命令:

yum installrsync

rsync服務端配置

#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

#  chmod  600  /etc/rsyncd.secrets

rsync客戶端配置

步驟1:在/etc目錄下生成rsyncd.secrets檔案

#echo "rsync">/etc/rsyncd.secrets

#chmod 600/etc/rsyncd.secrets

rsync檔案同步

步驟1:服務端rsync以守護程序形式啟動

# rsync –deamon

注:rsync啟動的埠為 873埠,注意防火牆要開啟該埠

另外最好用chkconfig將rsync設定為開機自動啟動

# chkconfig --level 35 rsync on

步驟2:客戶端用如下命令進行手工檔案同步

# rsync -vzurtopg --progress [email protected].::rsyncd /home/test

--password-file=/etc/rsyncd.secrets

注:可以將上述命令寫成乙個指令碼,然後用crontab設定定時執行,實現定時同步,比如一分鐘同步一次

常見問題解決方法

用nslookup 解析網域名稱解析不了

現象描述

出現類似如下的錯誤:

can't find regserver.yealink.com: non-existent domain

原因分析

沒有正確設定dns伺服器

處理方法

對於linux:

#vi /etc/resolv.conf

新增如下內容:

nameserver    ***.***.***.***  //dns伺服器的ip

對於window:

在本地連線中將自己搭建的dns設為主dns伺服器

配置NFS共享

nfs 網路檔案系統 linux與linux平台 伺服器端 1.安裝軟體nfs utils 服務 nfs server 2.建立共享目錄 mkdir nfs dir 3.修改配置檔案 etc exports nfs dir ro 所有人唯讀許可權訪問 4.重啟服務 systemctl restart...

NFS 檔案共享

檔案共享 主機伺服器 主伺服器 ip 103.2.3.111 1 安裝nfs 和 rpcbind 安裝nfs utils rpcbind yum y install nfs utils rpcbind 檢視是否安裝 rpm qa grep nfs rpm qa grep rpcbind 2 關閉防火...

NFS檔案共享

nfs是network file system的縮寫,中文意思是網路檔案系統。它的主要功能是通過網路 一般是區域網 讓不同的主機系統之間可以共享檔案或目錄。nfs客戶端 一般為應用伺服器,例如web 可以通過掛載 mount 的方式將nfs伺服器端共享的資料目錄掛載帶nfs客戶端本地系統中 就是某乙...