Support Questions

Find answers, ask questions, and share your expertise
Announcements
Celebrating as our community reaches 100,000 members! Thank you!

SQOOP issue : The Network Adapter could not establish the connection

avatar
Expert Contributor

I am getting below error while executing SQOOP import command : ERROR manager.SqlManager: Error executing statement: java.sql.SQLRecoverableException: IO Error: The Network Adapter could not establish the connection

9 REPLIES 9

avatar
Expert Contributor

Query : ./sqoop import --connect jdbc:oracle:thin://<ip address>:1521/app --username APP --password APP12# --table tbemp --hive-import

avatar

Your --connect URL does not seem to be correct.

--connect jdbc:oracle:thin://<ip address>:1521/app

Change it to something like following

--connect jdbc:oracle:thin:@//<ip address>:1521/app

avatar

Also it will be best to check if the oracle DB listener is started listening properly on port 1521 or not?

It will be also good to check if the port is accessible fine from the sqoop client host:

telnet   <oracle_ipaddress>   1521

avatar
Expert Contributor

This I need to do from hadoop namenode?

avatar

@Amit Dass the telnet command it just to verify the connectivity between the host where you are running the "./sqoop import" command to the Oracle Database host "<oracle_ipaddress> 1521".

avatar
Expert Contributor

If app is not a defined service for the TNS listener but the instance id, use this URL format

jdbc:oracle:thin:@//<host>:1521:app

Also, make sure you can connect to the Oracle instance from the all the client nodes (typically) as the sqoop mappers will run across the cluster.

avatar
New Contributor

connection from all nodes in cluster to Oracle DB, is must.

avatar
New Contributor

This is good insight, how would I check if each node can connect to the Oracle DB?

avatar
New Contributor

See if the listener and the database are initiated. I just started the listener (lsnrctl start) and the database (sqlplus / as sysdba    and     startup) and it worked.