. oraenv
sqlplus / as sysdba
SQL>STARTUP; ORA-00119: invalid specification for system parameter LOCAL_LISTENER ORA-00130: invalid listener address '(ADDRESS=(PROTOCOL=TCP)(HOST=localhost)(PORT=1521)) Analyse :
[oracle@localhost]$ cat /etc/hosts # Do not remove the following line, or various programs # that require network functionality will fail. 127.0.0.1 localhost.localdomain localhost ::1 localhost6.localdomain6 localhost6 $hostname localhost2 explication: Le nom du serveur est diffèrent entre le fichier listener et le nom niveau system Solution: Modification du nom serveur avec le nom déclarer dans le fichier listener.ora Pour linux /etc/network ou fixer le nom du serveur dans les variables d'environnement
SQL> startup; ORACLE instance started. Total System Global Area 1068937216 bytes Fixed Size 2220200 bytes Variable Size 616566616 bytes Database Buffers 444596224 bytes Redo Buffers 5554176 bytes Database mounted. Database opened. SQL>
Dans d'autre cas on peut commenter le paramètre LOCAL_LISTENER si celui est présent dans le fichier pfile OraclementVotre