Reputation: 23527
I have created a neptune instance and per the documentation here...
I create the following yaml...
hosts: [xxx.xxx.us-east-2.neptune.amazonaws.com]
port: 8182
serializer: { className: org.apache.tinkerpop.gremlin.driver.ser.GryoMessageSerializerV3d0, config: { serializeResultToString: true }}
And when I try to connect everything seems to work I see...
==>All scripts will now be sent to Gremlin Server - [xx.xx.us-east-2.neptune.amazonaws.com/172.xx.x.xxx:8182] - type ':remote console' to return to local mode
What am I missing why is the query failing?
Upvotes: 0
Views: 367
Reputation: 261
Have you enabled IAM authentication on your instance? If yes, you will have to perform some additional steps to connect to the DB.
If no, double check the following:
If it still doesn't connect, I would suggest you to contact AWS Support.
Upvotes: 2
Reputation: 1
Are you trying to connect from your pc or ec2 instance ? I think that Neptune is not publicly accessibly create ec2 instance in the same VPC and try to connect from it
Upvotes: -1