rac 命令 srvctl 報錯

lovehewenyu發表於2012-05-28

使用srvctl報錯及解決方法

首先感謝,以下筆者

http://blog.csdn.net/tianlesoftware/article/details/6269150tianlesoftware

1、解決目錄問題

 

[ora@rac1-21 bin]$ srvctl

/u01/oracle/product/10.2.0/db_1/jdk/jre/bin/java: error while loading shared libraries: libpthread.so.0: cannot open shared object file: No such file or directory

 

[ora@rac1-21 bin]$ which srvctl

/u01/oracle/product/10.2.0/db_1/bin/srvctl

 

[ora@rac1-21 bin]$ echo $PATH

/u01/oracle/product/10.2.0/db_1/bin:/usr/sbin:/usr/kerberos/bin:/usr/local/bin:/bin:/usr/bin:/home/ora/bin:/u01/oracle/product/10.2.0/crs_1/bin

 

其實srvctl應該是在/u01/oracle/product/10.2.0/crs_1/bin目錄下的。但是因為我們~/.bash_profile  PATH的順序問題。所以修改了一下

export PATH=.:${PATH}:$HOME/bin:$ORA_CRS_HOME/bin:$ORACLE_HOME/bin

 

這裡也提示我們PATH是有順序更好。

 

 

2、解決BUG問題

 

接著使用srvctl 還是報錯。想想我們vipca前,新增了unset  這裡,我們需要編輯srvctl註釋

#Remove this workaround when the bug 3937317 is fixed

#LD_ASSUME_KERNEL=2.4.19

#export LD_ASSUME_KERNEL

 

 

[ora@rac2-22 ~]$ srvctl --help

用法: srvctl []

    命令: enable|disable|start|stop|relocate|status|add|remove|modify|getenv|setenv|unsetenv|config

    物件: database|instance|service|nodeapps|asm|listener

有關各個命令和物件的詳細幫助, 請使用:

    srvctl -h

 

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

相關文章