星期六, 2月 23, 2013

rsync error message: rsync failed to set times on

事情是這樣的 (偷笑)

我有兩台伺服器想透過rsync作資料同步。
A -  IP:192.168.1.2
B -  IP:192.168.1.3

於是我在A伺服器中設定了NFS

#vi /etc/exports
/tmp        192.168.1.3(rw)

#start nfs service

接著我在B伺服器中掛載B伺服器,並測試使用rsync排程
#mount -t nfs 192.168.1.2:/tmp /tmp

#測試同步
#rsync -av /tmp/ /tmp/
可是卻出現錯誤訊息: rsync failed to set times on


後來在鳥哥的網站發現到,如果讓 root 保有 root 的權限,那麼需要加上
no_root_squash
 
 #vi /etc/exports
/tmp        192.168.1.3(rw,no_root_squash)

#restart NFS
 問題就順利的解決了!

星期四, 2月 07, 2013

mdadm md device /dev/md0 does not appear active

事情是這樣的,有一台跑著軟體raid的主機,無預警的重開機之後出現錯誤!
接著便無法順利掛載使用,查看錯誤訊息為
mdadm md device /dev/md0 does not appear active
 
後來爬文爬了許久,試了許多步驟發現都沒用,直到看到這篇

Re: Device Unusable At Startup


# mdadm -R /dev/md0

重新mount 之後,東西都回來了,真是太感動了!