暫時記錄,以後歸檔。

jinqibingl發表於2012-10-04

暫時記錄,以後歸檔。  

1、mount有時候會出錯,明明沒有mount,使用mounted.ocfs2 -f 檢查的時候,卻發現已經mount,明明fstab中沒有的,看樣子只能重新mount了,所幸重新mount的時候沒有出錯。

2、RAC,還需要一個時間同步服務,據說11G RAC中了帶了的,不過我現在用的是linux系統的NTPD服務。

      下述設定以時鐘源伺服器IP地址為192.168.56.132為例。可以命令ntpstat 和 ntpq -p 檢視本機NTPD服務狀態。配置完成後,均需要重新啟動NTPD服務 service ntpd restart

【伺服器端設定】

(1).將/etc/下的檔案ntp.conf修改如下:

server 127.127.1.0 minpoll 4 maxpoll 5

fudge 127.127.1.0 stratum 2

restrict 127.0.0.1

driftfile /var/lib/ntp/drift

(2).將/etc/ntp下的檔案ntpservers內容置空

(3).將/etc/ntp下的檔案step-tickers修改如下:

127.127.1.0

【客戶端設定】

(1).將/etc/下的檔案ntp.conf修改如下:

server 192.168.56.132 minpoll 4 maxpoll 5

fudge 127.127.1.0 stratum 3

restrict 127.0.0.1

driftfile /var/lib/ntp/drift

logfile /etc/ntp.log

restrict 192.168.56.132 mask 255.255.255.0

(2).將/etc/ntp下的檔案ntpservers內容置空

(3).將/etc/ntp下的檔案step-tickers修改如下:

192.168.56.132

全部照做就可以了。當然修改完成後,還是需要重啟服務的。

3、GRID在安裝之後,可以進行安裝前的檢查,檢查系統配置情況,如下:

./runcluvfy.sh stage -pre crsinst -n rac1,rac2 -verbose

可以修改成將檢查結果寫到檔案中:

./runcluvfy.sh stage -pre crsinst -n rac1,rac2 -verbose >>test.log

也可以檢查校驗共享磁碟:

./runcluvfy.sh comp ssa -n rac1,rac2 -s /dev/sdb1,/dev/sdb2 >>test2.log

因為相當重要,所以臨時記錄下。

4、要用ntpd -x來啟動服務,這個要求在引導階段就已經-x選項,所以只能重啟。

PRVF-5472 : NTP daemon's boot time configuration does not have slewing option "-x" set on node "rac2"  - Cause:  NTP daemon boot time configuration on the specified node does not have the slewing option set.  - Action:  The NTP daemon's boot time configuration file is listed with the messages accompanying this message. Make sure that slewing option is set in configuration file. For more information on NTP daemon slewing option refer to NTP daemon's man pages.

解決辦法:

If you are using NTP, you must add the "-x" option into the following line in the "/etc/sysconfig/ntpd" file.
OPTIONS="-x -u ntp:ntp -p /var/run/ntpd.pid"

 

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

相關文章