現象
CentOS 5.5 x86 に Oracle Database 11g Release 2 Grid Infrastructure (11.2.0.2.0) for Linux x86 をインストール中に Step 15 of 18 Perform Prerequisite Checks で以下のエラーが発生する。
- /u01/software/grid/oui_debug_6397.log
- 「./runInstaller -debug 2>&1|tee oui_grid_$$.log」でOUIを起動しているので、デバッグ・モードでのログが oui_grid_
.log に出力されています。
- 「./runInstaller -debug 2>&1|tee oui_grid_$$.log」でOUIを起動しているので、デバッグ・モードでのログが oui_grid_
[performChecks.flowWorker] [ 2010-12-25 21:32:23.524 JST ] [TaskNTP.performTask:180] ResultSet shows at least one failure [performChecks.flowWorker] [ 2010-12-25 21:32:23.524 JST ] [Task.perform:439] TaskNTP:Network Time Protocol (NTP):TASK_SUMMARY:FAILED:CRITICAL:VERIFICATION_FAILED ERRORMSG(GLOBAL): PRVF-5408 : NTP Time Server "133.100.11.8" is common only to the following nodes "node01" ERRORMSG(GLOBAL): PRVF-5408 : NTP Time Server "210.171.226.40" is common only to the following nodes "node01" ERRORMSG(GLOBAL): PRVF-5408 : NTP Time Server "150.26.2.66" is common only to the following nodes "node02" ERRORMSG(GLOBAL): PRVF-5408 : NTP Time Server "133.243.238.164" is common only to the following nodes "node02" ERRORMSG(node02): PRVF-5413 : Node "node02" has a time offset of 3159.51 that is beyond permissible limit of 1000.0 from NTP Time Server "210.173.160.87" ERRORMSG(node01): PRVF-5413 : Node "node01" has a time offset of 3168.0 that is beyond permissible limit of 1000.0 from NTP Time Server "210.173.160.87" [performChecks.flowWorker] [ 2010-12-25 21:32:23.524 JST ] [ResultSet.traceResultSet:342] === m_resultSet before return from verify() === Overall Status->VERIFICATION_FAILED node02-->VERIFICATION_FAILED node01-->VERIFICATION_FAILED
原因
- NTPサーバとノードの時刻の差が1000ミリ秒、つまり1秒より大きい。たぶん。
対処
- ndptd を停止する。
[root@node01 CVU_11.2.0.2.0_grid]# service ntpd stop Shutting down ntpd: [ OK ]
- 手動でNTPサーバと時刻同期する。
[root@node01 CVU_11.2.0.2.0_grid]# ntpdate 0.centos.pool.ntp.org 25 Dec 22:15:17 ntpdate[26682]: step time server 183.180.25.126 offset 3.206603 sec
- ntpd を開始する。
[root@node01 CVU_11.2.0.2.0_grid]# service ntpd start ntpd: Synchronizing with time server: [ OK ] Starting ntpd: [ OK ]