ORA-00119: invalid specification for system parameter LOCAL_ LISTENER ORA-00132: syntax error or unresolved network name 'LISTENER_ ORCL'
Resolution process:
create pfile from spfile;
#Specify Start From #Example startup nomount pfile='/u01/app/oracle/product/11.2.0/db_ 1/dbs/initorcl.ora'
create spfile from pfile;
startup
shutdown
startup
[ oracle@dbserver1051 ~]$ sqlplus / as sysdba SQL*Plus: Release 11.2.0.4.0 Production on Mon Dec 3 14:07:35 2018 Copyright (c) 1982, 2013, Oracle. All rights reserved. Connected to an idle instance. SQL> startup ORA-00119: invalid specification for system parameter LOCAL_ LISTENER ORA-00132: syntax error or unresolved network name 'LISTENER_ ORCL' SQL> create pfile from spfile; File created. #Split line, see the above steps. Please modify the initorcl.ora file before continuing SQL> startup nomount pfile='/u01/app/oracle/product/11.2.0/db_ 1/dbs/initorcl.ora'; ORACLE instance started. Total System Global Area 2421825536 bytes Fixed Size 2255632 bytes Variable Size 805307632 bytes Database Buffers 1593835520 bytes Redo Buffers 20426752 bytes SQL> create spfile from pfile; File created. SQL> startup ORA-01081: cannot start already-running ORACLE - shut it down first SQL> shutdown ORA-01507: database not mounted ORACLE instance shut down. SQL> startup ORACLE instance started. Total System Global Area 2421825536 bytes Fixed Size 2255632 bytes Variable Size 805307632 bytes Database Buffers 1593835520 bytes Redo Buffers 20426752 bytes Database mounted. Database opened.