通過中轉機及ssh rsync 傳輸歸檔檔案進行同步
目的:
10.13.8.186 archived log 中轉機器 。 需要從production節點mxrac01,03,04,05(10.13.67.171/172/174/175)上的
任何一臺中拷貝所有節點的歸檔檔案, 然後傳送到 RAC Standby機器上 (10.13.9.171/173/174 任何一臺) 。
步驟:
1, 首先,要在中轉機上生成public key
dfms-arc-shipping$ cd /home/oracle
dfms-arc-shipping$mkdir .ssh
dfms-arc-shipping$chmod 700 .ssh
dfms-arc-shipping$ cd /home/oracle
dfms-arc-shipping$ ssh-keygen -t rsa
然後可以看到 .ssh 目錄下生成有 id_rsa.pub 檔案。
2. 然後在production各個節點(其實在一個準備拷貝的節點作業就可以了,這裡為了防止有節點出現問題)將中轉機的public key傳輸到
各個節點已經存在 authorized_keys 檔案中, 然後通過在中轉機上測試 ssh mxrac01 date 等來測試中轉機到RAC的連通性。
mxrac01$ssh 10.13.8.186 cat /home/oracle/.ssh/id_rsa.pub >>authorized_keys
mxrac03$ssh 10.13.8.186 cat /home/oracle/.ssh/id_rsa.pub >>authorized_keys
mxrac04$ssh 10.13.8.186 cat /home/oracle/.ssh/id_rsa.pub >>authorized_keys
mxrac05$ssh 10.13.8.186 cat /home/oracle/.ssh/id_rsa.pub >>authorized_keys
3. 同樣,中轉機上的archived log要傳輸到RAC Standby上, 我們要將中轉機的public key 傳輸到RAC Standby的各個節點的 authorized_keys
中, 由於中轉機是主動角色, 所以其他機器的public key 不用傳給中轉機的 authorized_keys (所以它可以不用生成這個檔案) 。 同樣測試中轉機到RAC
Standby各個節點的聯通性。
mxrac01$ssh 10.13.8.186 cat /home/oracle/.ssh/id_rsa.pub >>authorized_keys
mxrac03$ssh 10.13.8.186 cat /home/oracle/.ssh/id_rsa.pub >>authorized_keys
mxrac04$ssh 10.13.8.186 cat /home/oracle/.ssh/id_rsa.pub >>authorized_keys
mxrac05$ssh 10.13.8.186 cat /home/oracle/.ssh/id_rsa.pub >>authorized_keys
備註: 目前所有的拷貝工作都是production db及standby db中的節點4 在和中轉機進行, 只所有要加入中轉機的public key 給所有節點,建立ssh信任關係,
主要是為了防止節點4發生故障後, 只要修改rsync 指令碼中的IP即可 。
4. 設定指令碼(指令碼放在中轉機上):
dfms-arc-shipping$cat rsync_rac_arc
#!/bin/bash
pid=`/sbin/pidof rsync`
if [ "$pid" ]
then
echo "Rsync is already running...."
else
echo "Starting rsync from production db to middle server `date`"
rsync -e ssh -av oracle@10.13.67.174:/ocfs_data/mxdell/arch/ /ocfs_data/mxdell/arch/
echo "Starting rsync from middle server to standby server `date`"
rsync -e ssh -av /ocfs_data/mxdell/arch/ oracle@10.13.9.174:/ocfs_data/mxdell/arch/
echo "Completed rsync `date`"
fi
exit 0
5. 最後設定crontab (在中轉機上):
dfms-arc-shipping$crontab -l
*/10 * * * * bash /u01/run/rsync_rac_arc 1>>/u01/run/log/rsync_rac_arc.log 2>>/u01/run/log/rsync_rac_arc.bad
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/35489/viewspace-630857/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 如何使用 rsync 透過 SSH 恢復部分傳輸的檔案
- 什麼是極速檔案傳輸,極速檔案傳輸如何進行大檔案傳輸
- rsync udr——遠端大檔案傳輸加速
- Win10系統怎麼通過藍芽與手機進行檔案傳輸Win10藍芽
- ios檔案同步傳輸工具iOS
- Linux 檔案同步工具之 rsyncLinux
- 企業經常需要進行傳輸檔案,大檔案傳輸有哪些方法?
- Windows 機器通過 FTP 上傳檔案WindowsFTP
- ADG歸檔不傳輸
- SpringCloud 通過feign檔案傳輸並打zip包下載SpringGCCloud
- linux 利用rsync實現檔案增量同步Linux
- rsync同步和備份檔案到本地
- 通過配置檔案(.htaccess)實現檔案上傳
- Win10系統怎麼透過藍芽與手機進行檔案傳輸Win10藍芽
- 資料檔案在網路“裸奔”,如何在網際網路中進行檔案傳輸?
- 哪裡有免費大檔案傳輸平臺?透過這4個網站免費來進行大檔案傳輸網站
- 在Linux中,如何進行備份或歸檔檔案(tar 命令)?Linux
- 在Linux中,rsync 同步資料時,如何過濾出所有.txt的檔案不同步?Linux
- 基於rsync實現海量檔案高速傳輸的解決方案
- 如何有序高效地進行大檔案跨國傳輸?
- win10通過映象檔案進行升級Win10
- rsync同步檔案到遠端機器,卡住10多秒--問題解決過程
- Linux 檔案傳輸Linux
- sftp 傳輸檔案FTP
- scp 傳輸檔案
- 通過反射獲取上傳檔案方法引數中的檔名反射
- 大檔案如何傳輸,大檔案的傳輸方式有哪些?
- 還在使用檔案傳輸協議傳輸機密檔案?你可能是對檔案傳輸協議有什麼誤會協議
- 使用MFT進行加密檔案傳輸的7個好處加密
- win10系統區域網傳輸檔案操作方法 win10怎麼通過區域網傳輸檔案Win10
- SQLServer進行表歸檔SQLServer
- 【多檔案自平衡雲傳輸】使用展示 —— 檔案傳輸系統
- 檔案傳輸協議的五種安全檔案傳輸替代方案協議
- jftp通過sftp協議上傳檔案FTP協議
- wtfpd檔案傳輸使用
- Linux scp 後臺執行傳輸檔案Linux
- 透過二維碼傳輸檔案到linuxLinux
- 什麼是檔案傳輸,介紹檔案傳輸的發展程式
- 有了大檔案傳輸加速功能,不再擔憂傳輸大檔案