AIX 6.1 建立信任關係透過rsync進行應用資料同步 1

dbhelper發表於2014-11-27

建立本地和備用系統間的ssh信任關係,然後使用rsync


1.  建立主應用伺服器及備應用伺服器上的.ssh
主應用伺服器 :
$ cd ~
$  mkdir  .ssh
$ chmod 700  .ssh/

備應用伺服器 :  
$ cd ~
$ mkdir  .ssh
$ chmod 700  .ssh/


2. 建立信任關係

在主應用伺服器上 :   
$  cd ~
$ pwd
/oracle/applcrp2
$ ssh-keygen -t  rsa

在備應用伺服器上 :
$ cd ~
$ pwd
/home/applcrp2
$ ssh-keygen  -t  rsa


在主應用伺服器上 :
$ cd  ~/.ssh
$ pwd
/oracle/applcrp2/.ssh

$ cat  /oracle/applcrp2/.ssh/id_rsa.pub  >>authorized_keys 

$ ssh  nkgmr20-ts  cat  /home/applcrp2/.ssh/id_rsa.pub  >>authorized_keys
password:

 

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/8494287/viewspace-1349503/,如需轉載,請註明出處,否則將追究法律責任。

相關文章