實操步驟 sersync安裝配置

2022-09-15 22:00:23 字數 1769 閱讀 6455

在所有接受檔案端yum install -y rsync安裝 rsync

[root@01 backup]# rsync -artuz -r --delete ./ 傳輸用使用者名稱@10.10.1.119::共享目錄名 --password-file=/etc/rsync.pas

@error: auth failed on module 共享目錄名

rsync error: error starting client-server protocol (code 5) at main.c(1503) [sender=3.0.6]

報了個這樣的錯;

要在傳輸用使用者名稱安裝端配置:

# cat /etc/rsync.pas

口令# cat /etc/rsync.conf

cat: /etc/rsync.conf: no such file or directory

# cat /usr/local/sersync2.5.4_64bit/confxml.xml|grep dg

# cat /usr/local/sersync2.5.4_64bit/confxml.xml|grep users

在rsync安裝端配置:

# cat /etc/rsync.pas

傳輸用使用者名稱:口令

[root@product08-fastfile ~]# cat /etc/rsync.conf |grep 傳輸用使用者名稱

auth users = 傳輸用使用者名稱

[root@product08-fastfile ~]# cat /etc/rsync.conf |grep dg

[共享目錄名]

path = /opt/共享目錄名

[root@product08-fastfile ~]# cat /etc/rsync.conf |grep pas

secrets file = /etc/rsync.pas

重啟rsync端服務

[root@opermainmanager localhost]# ps aux|grep rsync

root 25651 0.0 0.0 107628 564 ? ss jun03 0:00 rsync --daemon --config=/etc/rsync.conf

root 29148 0.0 0.0 103252 832 pts/0 s+ 16:39 0:00 grep rsync

[root@opermainmanager localhost]# kill -9 25651

[root@opermainmanager localhost]# rsync --daemon --config=/etc/rsync.conf

[root@opermainmanager localhost]# ps aux|grep rsync

root 29152 0.0 0.0 107628 564 ? ss 16:40 0:00 rsync --daemon --config=/etc/rsync.conf

root 29154 0.0 0.0 103252 836 pts/0 s+ 16:40 0:00 grep rsync

[root@opermainmanager localhost]#

重啟sersync端服務

/usr/local/sersync2.5.4_64bit/sersync2 -r -d -o /usr/local/sersync2.5.4_64bit/confxml.xml

windows CVS 安裝配置步驟

cvs安裝 1 安裝工具cvsnt,安裝成功後開啟cvs for nt 工具service status 選項卡提示 cvs service running,cvs lock service running 2 配置repositories選項卡,增加cvs root 3 設定cvsroot 進入命...

Mysql 免安裝 配置步驟

1 設定mysql安裝路徑 2 配置my.ini檔案 my.ini內容開始,不保含本行 winmysqladmin server d 常用 mysql5 bin mysqld nt.exe mysqld basedir d 常用 mysql5 datadir d 常用 mysql5 data 設定m...

vue環境安裝配置步驟

1.安裝node.js npm包管理器,是整合在node中的,所以安裝了node也就有了npm,直接輸入 npm v 命令,顯示npm的版本資訊。到目前為止,node的環境已經安裝完成,npm 包管理器也有了,由於有些npm資源被遮蔽或者是國外資源的原因,經常會導致npm安裝依賴包的時候失敗,所以我...