【問題處理】diagcollection.pl採集指令碼執行出錯——'crshome' is missing
1.問題現象
1)在root使用者下設定必須的環境變數
[root@rac1 ~]# export ORACLE_BASE=/oracle/app/oracle
[root@rac1 ~]# export ORACLE_HOME=$ORACLE_BASE/product/10.2.0/db_1
[root@rac1 ~]# export ORA_CRS_HOME=/oracle/app/crs
2)確認環境變數設定正確
[root@rac1 ~]# echo $ORACLE_BASE
/oracle/app/oracle
[root@rac1 ~]# echo $ORACLE_HOME
/oracle/app/oracle/product/10.2.0/db_1
[root@rac1 ~]# echo $ORA_CRS_HOME
/oracle/app/crs
[root@rac1 ~]# echo $HOSTNAME
rac1
3)問題報錯如下
[root@rac1 ~]# cd $ORA_CRS_HOME/bin
[root@rac1 bin]# ./diagcollection.pl --collect
Production Copyright 2004, 2005, Oracle. All rights reserved
Cluster Ready Services (CRS) diagnostic collection tool
Mandatory argument 'crshome' is missing.
2.問題原因
這是由於Oracle的Bug導致的,有關該Bug在MOS的“Bug 6899547: DIAGCOLLECTION.PL FAILS WITH MANDATORY ARGUMENT 'CRSHOME' IS MISSING”有記載。
3.處理方法
此時即便即便在作業系統上顯式地指定crshome環境變數是不能解決該問題的。需要在使用該指令碼的時候使用“--crshome $ORA_CRS_HOME”選項顯式的給出。
[root@rac1 bin]# ./diagcollection.pl --collect --all --crshome $ORA_CRS_HOME
Production Copyright 2004, 2005, Oracle. All rights reserved
Cluster Ready Services (CRS) diagnostic collection tool
The following CRS diagnostic archives will be created in the local directory.
crsData_rac1.tar.gz -> logs,traces and cores from CRS home. Note: core files will be packaged only with the -core option.
ocrData_rac1.tar.gz -> ocrdump, ocrcheck etc
coreData_rac1.tar.gz -> contents of CRS core files in text format
Collecting crs data
/bin/tar: Removing leading `/' from member names
Collecting OCR data
Collecting information from core files
No corefiles found
The following Oracle Home diagnostic archives will be created in the local directory.
oraData_rac1.tar.gz -> logs, traces and cores from Oracle Home
Collecting oracle home data
/bin/tar: Removing leading `/' from member names
資訊採整合功。
4.更多的參考資訊
參見MOS:diagcollection.pl errors "Mandatory argument 'crshome' is missing" [ID 785907.1]
5.小結
文中提到的問題直到Oracle 11.1.0.7版本才修復完成,針對Oracle 10.2.0.4給出了修復的Patch,可以酌情對其進行修復。
Good luck.
secooler
10.11.19
-- The End --
1)在root使用者下設定必須的環境變數
[root@rac1 ~]# export ORACLE_BASE=/oracle/app/oracle
[root@rac1 ~]# export ORACLE_HOME=$ORACLE_BASE/product/10.2.0/db_1
[root@rac1 ~]# export ORA_CRS_HOME=/oracle/app/crs
2)確認環境變數設定正確
[root@rac1 ~]# echo $ORACLE_BASE
/oracle/app/oracle
[root@rac1 ~]# echo $ORACLE_HOME
/oracle/app/oracle/product/10.2.0/db_1
[root@rac1 ~]# echo $ORA_CRS_HOME
/oracle/app/crs
[root@rac1 ~]# echo $HOSTNAME
rac1
3)問題報錯如下
[root@rac1 ~]# cd $ORA_CRS_HOME/bin
[root@rac1 bin]# ./diagcollection.pl --collect
Production Copyright 2004, 2005, Oracle. All rights reserved
Cluster Ready Services (CRS) diagnostic collection tool
Mandatory argument 'crshome' is missing.
2.問題原因
這是由於Oracle的Bug導致的,有關該Bug在MOS的“Bug 6899547: DIAGCOLLECTION.PL FAILS WITH MANDATORY ARGUMENT 'CRSHOME' IS MISSING”有記載。
3.處理方法
此時即便即便在作業系統上顯式地指定crshome環境變數是不能解決該問題的。需要在使用該指令碼的時候使用“--crshome $ORA_CRS_HOME”選項顯式的給出。
[root@rac1 bin]# ./diagcollection.pl --collect --all --crshome $ORA_CRS_HOME
Production Copyright 2004, 2005, Oracle. All rights reserved
Cluster Ready Services (CRS) diagnostic collection tool
The following CRS diagnostic archives will be created in the local directory.
crsData_rac1.tar.gz -> logs,traces and cores from CRS home. Note: core files will be packaged only with the -core option.
ocrData_rac1.tar.gz -> ocrdump, ocrcheck etc
coreData_rac1.tar.gz -> contents of CRS core files in text format
Collecting crs data
/bin/tar: Removing leading `/' from member names
Collecting OCR data
Collecting information from core files
No corefiles found
The following Oracle Home diagnostic archives will be created in the local directory.
oraData_rac1.tar.gz -> logs, traces and cores from Oracle Home
Collecting oracle home data
/bin/tar: Removing leading `/' from member names
資訊採整合功。
4.更多的參考資訊
參見MOS:diagcollection.pl errors "Mandatory argument 'crshome' is missing" [ID 785907.1]
5.小結
文中提到的問題直到Oracle 11.1.0.7版本才修復完成,針對Oracle 10.2.0.4給出了修復的Patch,可以酌情對其進行修復。
Good luck.
secooler
10.11.19
-- The End --
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/519536/viewspace-679467/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 【問題處理】diagcollection.pl採集指令碼執行出錯——Argument list too longGC指令碼
- 執行指令碼diagcollection.pl報錯指令碼GC
- ORACLE問題處理十個指令碼Oracle指令碼
- shell指令碼報錯:[: missing `]‘指令碼
- solaris 10 sar_ 執行出錯處理
- 從一個shell指令碼執行出錯聊起指令碼
- 執行 shell 指令碼 \r 問題解決指令碼
- 資料採集,微軟控制元件分頁問題的處理微軟控制元件
- sh指令碼執行報錯指令碼
- xcall叢集執行命令指令碼指令碼
- Bash 指令碼中的錯誤處理指令碼
- docker 遷移映象到其他機器執行報錯OCI 問題處理Docker
- Linux 問題處理集錦Linux
- Linux每程式執行緒數問題處理Linux執行緒
- 一個“指令碼執行夯死”問題的分析指令碼
- repmgr 叢集雙主問題處理
- SOLIDWORKS啟動時出現指令碼錯誤問題Solid指令碼
- shell 指令碼的除錯問題指令碼除錯
- Arcgis toolbox匯入python script執行出錯,實在找不出指令碼哪裡有問題。求助Python指令碼
- crontab不執行mysql的指令碼問題的解決!MySql指令碼
- 最近執行VBA程式碼時候出現這樣錯誤,現已經找到了問題所在處
- Android高併發問題處理和執行緒池ThreadPool執行緒池原始碼分析Android執行緒thread原始碼
- 升級執行指令碼遇到SP2-0734: unknown command beginning 錯誤處理指令碼
- 執行計劃問題導致處理速度時快時慢的問題
- 多執行緒程式設計,處理多執行緒的併發問題(執行緒池)執行緒程式設計
- Linux 作業系統指令碼格式問題導致指令碼無法執行Linux作業系統指令碼
- 執行錯誤集
- exp匯出報錯EXP-00106問題處理
- MySQL:亂碼問題處理流程MySql
- java處理中文亂碼問題Java
- 多執行緒資料採集執行緒
- Windos bat批處理指令碼,判斷是終端命令列執行,還是雙擊執行BAT指令碼命令列
- 計劃任務執行批處理指令碼,執行記錄顯示“上次執行結果(0x1)”指令碼
- 執行npm update等命令出錯後如何分析問題根源NPM
- Camunda 流程執行錯誤處理ERROR BOUNDARY EVENTError
- 處理若干行輸出的題目
- Qt處理中文編碼出現錯誤QT
- Java之執行緒安全問題的3種處理方式(通過執行緒同步)Java執行緒