【发布时间】:2020-05-15 10:13:17
【问题描述】:
非常感谢您提前提供的帮助
我正在尝试按照 https://docs.aws.amazon.com/neptune/latest/userguide/get-started.html 的说明设置我的 AWS Neptune 环境。设置似乎很好,我可以使用 Neptune Notebook 安装来检查状态。状态消息为:
{
"status": "healthy",
"startTime": "Tue May 12 04:24:52 UTC 2020",
"dbEngineVersion": "1.0.2.2.R2",
"role": "writer",
"gremlin": {
"version": "tinkerpop-3.4.3"
},
"sparql": {
"version": "sparql-1.1"
},
"labMode": {
"ObjectIndex": "disabled",
"ReadWriteConflictDetection": "enabled"
}
}
但是我无法通过 EC2 客户端实例中的 Gremlin 控制台连接到它,我收到如下 403 禁止错误:
\,,,/
(o o)
-----oOOo-(3)-oOOo-----
plugin activated: tinkerpop.server
plugin activated: tinkerpop.utilities
plugin activated: tinkerpop.tinkergraph
gremlin> :remote connect tinkerpop.server conf/neptune-remote.yaml
WARN org.apache.tinkerpop.gremlin.driver.Cluster - Using deprecated SSL trustCertChainFile support
ERROR org.apache.tinkerpop.gremlin.driver.Handler$GremlinResponseHandler - Could not process the response
io.netty.handler.codec.http.websocketx.WebSocketHandshakeException: Invalid handshake response getStatus: 403 Forbidden
at io.netty.handler.codec.http.websocketx.WebSocketClientHandshaker13.verify(WebSocketClientHandshaker13.java:226)
at io.netty.handler.codec.http.websocketx.WebSocketClientHandshaker.finishHandshake(WebSocketClientHandshaker.java:276)
at org.apache.tinkerpop.gremlin.driver.handler.WebSocketClientHandler.channelRead0(WebSocketClientHandler.java:69)
at io.netty.channel.SimpleChannelInboundHandler.channelRead(SimpleChannelInboundHandler.java:105)
at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:374)
at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:360)
我分配给 EC2 实例的 IAM 角色具有以下策略
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"neptune-db:*"
],
"Resource": [
"arn:aws:neptune-db:ap-southeast-2:<my aws account number>:*/*"
]
}
]
}
我的 neptune-remote.yaml 文件如下:
hosts: [<my neptune cluster name>.cluster-<cluster id>.ap-southeast-2.neptune.amazonaws.com]
port: 8182
connectionPool: { enableSsl: true, trustCertChainFile: "SFSRootCAG2.pem"}
serializer: { className: org.apache.tinkerpop.gremlin.driver.ser.GryoMessageSerializerV3d0, config: { serializeResultToString: true }}
为了调试这个问题,我尝试使用 apache-tinkerpop-gremlin-console 版本 3.4.1、3.4.3 和 3.4.6。都有相同的错误响应
我也尝试成功 telnet 到上面的主机端口,如下所示,所以这不是 SG 或连接问题:
$ telnet <my neptune cluster name>.cluster-<cluster id>.ap-southeast-2.neptune.amazonaws.com 8182
Trying 172.30.1.200...
Connected to xxxxx-xxxxxxxx.cluster-xxxxxx.ap-southeast-2.neptune.amazonaws.com.
Escape character is '^]'.
我为此苦苦挣扎了一段时间,任何帮助/提示将不胜感激
谢谢!
【问题讨论】:
-
乐于尝试并提供帮助。一些有助于缩小问题范围的问题...您是否在集群上启用了 IAM 身份验证?您可以从 EC2 实例执行以下操作: curl
:8182/status 吗? EC2 实例是否与 Neptune 在同一 VPC 中? -
您好,Kelvin,非常感谢您的帮助。我刚刚尝试做 curl
:8182/status,并得到以下结果: curl: (52) Empty reply from server。 ec2 实例与 Neptune 位于同一 VPC 中,但它作为 AWS 指令位于公共子网上。 -
您的 Neptune 集群是否启用了 IAM 安全性?如果是,您必须使用 SIG V4 签署请求。可以 curl 集群的 /status API 吗?
-
您应该在 curl 命令中使用 HTTPS。
curl https://<cluster-endpoint>:8182/status。检查这是否有效。如果您的集群中确实启用了 IAM Auth,我相当确定它也应该给您一个 403。要检查这一点,请使用 Neptune 控制台或 CLI 来描述集群的详细信息。 -
IAM db Auth 已为 Neptune 集群启用。当我尝试 curl https://
:8182/status 时,我得到 {"requestId":"....","code":"AccessDeniedException","detailedMessage":"Missing Authentication令牌"} 错误。
标签: amazon-web-services amazon-iam gremlin gremlin-server amazon-neptune