import socket
host = "My.Oracle.Host.cloudcom" # Replace with your Oracle DB host port = 1522 # Replace with the port number
try: with socket.create_connection((host, port), timeout=5): print("Connection successful!") except Exception as e: print(f"Connection failed: {e}")
We are trying to connect with Oracle ATP DB with wallet, since port is not open we are not able to deply solution