Welcome 微信登录

首页 / 数据库 / MySQL / 解决Oracle 11g ORA-00119 ORA-00132方法

在Linux下启动Oracle 11g是报如下错误:ORA-00119: invalid specification for system parameter LOCAL_LISTENERORA-00130: invalid listener address XIANGDE_LISTENER在网上也有很多人遇到这种问题,大家的解决方法基本都是一致的,但是oracle11g和oracle10g有些区别。$ ./sqlplus / as sysdba;SQL> create pfile from spfil=‘D:appfyproduct11.2.0dbhome_1databaseSPFILEXIANGDE.ORA";执行该语句后在database下会生成INITxiangde.ORA文件把INITxiangde.ORA文件中的*.local_listener的值改成,如:*.local_listener="(ADDRESS_LIST=(Address=(Protocol=tcp) (Host=serverIP)(Port=1521)))"再执行SQL> create spfile from pfil=‘D:appfyproduct11.2.0dbhome_1databaseINITxiangde.ORA";SQL>startup这样就启动了 (xiangde是SID)11g和10g的区别是这个spfile的位置是放在dbs下,而11g是放在database下Linux-6-64下安装Oracle 12C笔记 http://www.linuxidc.com/Linux/2013-07/86805.htm在CentOS 6.4下安装Oracle 11gR2(x64) http://www.linuxidc.com/Linux/2014-02/97374.htmOracle 11gR2 在VMWare虚拟机中安装步骤 http://www.linuxidc.com/Linux/2013-09/89579p2.htmDebian 下 安装 Oracle 11g XE R2 http://www.linuxidc.com/Linux/2014-03/98881.htm更多Oracle相关信息见Oracle 专题页面 http://www.linuxidc.com/topicnews.aspx?tid=12本文永久更新链接地址