- 论坛徽章:
- 0
|
RedHatLinux AS3 U2 安装 oracle9204 成功 笔录!!!
呵呵,上网查了一下,问题总算解决了,有2种方法:
1. had to modify $ORACLE_HOME/bin/dbca .....
The last if ... fi section looks for a file "/etc/rac_on" and calls jre in "native" mode if it exists. Although the file did NOT exist on my RHEL server I had to comment out the test line to make that section look like this ...
#if [ -f /etc/rac_on ]; then
# Run DBCA
$JRE_DIR/bin/jre -native -DORACLE_HOME=$OH -DJDBC_PROTOCOL=thin -mx64m -classpath $CLASSPATH oracle.sysman.assistants.dbca.Dbca $ARGUMENTS
#else
# Run DBCA
#$JRE_DIR/bin/jre -DORACLE_HOME=$OH -DJDBC_PROTOCOL=thin -mx64m -classpath $CLASSPATH oracle.sysman.assistants.dbca.Dbca $ARGUMENTS
#fi
This is not very elegant but does work!! Good luck!
2.在运行dbca, netca等图形工具之前,需要设置LD_ASSUME_KERNEL=2.4.19,否则不能启动JAVA. |
|