ORACLE ORA-27504 ORA-27300 ORA-27301 ORA-27302 ORA-27303 问题处理

问题在启动oracle时候出现
SQL> startup
ORA-27504: IPC error creating OSD context
ORA-27300: OS system dependent operation:gethostbyname failed with status: 0
ORA-27301: OS failure message: Error 0
ORA-27302: failure occurred at: skgxpiphost4
ORA-27303: additional information: requested interface 138.30.0.101 not found. Check output from ifconfig command

解决方案
# cd $ORACLE_HOME/rdbms/lib
# make -f ins_rdbms.mk rac_off ioracle 在上面路径下执行这条命令

之后可能会遇到另外一个问题
# startup
ORA-00119: invalid specification for system parameter LOCAL_LISTENER
ORA-00132: syntax error or unresolved network name 'LISTENER'

解决方案
在init(**).ora的文件中添加一句话
local_listener="(ADDRESS=(PROTOCOL=TCP)(HOST=127.0.0.1)(PORT = 1521))"
这个问题主要是监听配置不同步导致可以不同步直接添加以上语句即可,也可以修改两个监听文件让内容HOST保持一致。

猜你喜欢

转载自margin.iteye.com/blog/2372751