QNA > C > Come Risolvere Il Messaggio 'Status: Failure -Test Fallito: Errore Io: The Network Adapter Could Not Establish The Connection' Da Oracle 12

Come risolvere il messaggio 'Status: Failure -Test fallito: Errore IO: The Network Adapter could not establish the connection' da Oracle 12

Ecco i sei passi che puoi provare a connetterti al tuo database da sql developer.

  1. Impostare le variabili ORACLE_HOME, ORACLE_SID, PATH
  2. Provare a connettersi al database :
    • Navigare verso ORACLE_HOME/bin
    • digitare il comando - "sqlplus / as sysdba " per entrare in sqlplus
    • Se dice CONNESSO A UNA INSTANZA IDLE, digitare il comando STARTUP; per avviare il database.
    • Se dice CONNECTED TO so & so INSTANCE, allora il database è attivo e funzionante.
  1. Controlla se il database è in ascolto.
    • Naviga in ORACLE_HOME/bin
    • digita il comando - "./lsnrctl status" e questo ti darà la descrizione dell'Endpoint in ascolto.
    • Se digitando il comando sopra dice qualcosa come "il database non è in ascolto". You can give the command "./lsnrctl start" - this would start the listener.
  1. Check the endpoint description shown in the result of "./lsnrctl status"
    command and connect to the database by specifying the right SID, port number etc.
  2. If you aren't sure of the username and password,
    • Get into sqlplus as sysdba (as mentioned in step 2)
    • Run the query - "select * from all_users;"
    • Confirm that the username you are trying to login with is present in the result of the above query.
    • Set a new password for the user with the command - "ALTER USER user_name IDENTIFIED BY new_password;"
  1. Now connect to the database via sql developer with right credentials and Enjoy!!


PS: I haven't used Oracle 12, but I am very familiar with Oracle 11g. Assuming that there is no much difference in the way how we connect to the database, I have written this answer.

Di Fillander

Quale canzone ti viene in mente quando vedi una chitarra? :: Qual è il modo migliore per una donna di dire a un uomo potenzialmente violento che vuole il divorzio?
Link utili