I was able to connect to the Notebook for my Database cluster earlier but now I am getting error when I do %status.
I have created cluster and notebook with new VPC connection and also added the roles. I have also verified that the VPC connection is same for both notebook and DB Cluster
Please find the error message below.(I have removed the host name)
{'error': ConnectionError(MaxRetryError("HTTPSConnectionPool(host='mic.us-east-1.neptune.amazonaws.com', port=8182): Max retries exceeded with url: /status/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ff16b264080>: Failed to establish a new connection: [Errno 110] Connection timed out',))",),)}
That error message typically only occurs when there's something blocking network connectivity between the notebook instance and your Neptune cluster.
Make sure the security group for your Neptune cluster is allowing traffic from your notebook instance.
Validate that DNS is resolving to your Neptune cluster. From a %%bash cell or from a Jupyter terminal window:
nslookup <cluster_endpoint>
Validate that you can connect to your Neptune cluster's status endpoint. From a %%bash cell or Jupyter terminal window:
curl -s https://<cluster_endpoint>:8182/status
UPDATE:
It also appears that you're attempting to connect using 'mic.us-east-1.neptune.amazonaws.com'. That's not a valid Neptune endpoint. Neptune endpoints are in the form of:
(where abcdefghijkl is some random 12 letter string)