Arangodb 未使用本地主机连接但可使用外部 IP 访问
Arangodb not connecting using localhost but accessible using external IP
我在单节点 ubuntu 服务器上安装了 arangodb
,然后是 this
下面是我的 arangod.conf
文件:
endpoint = tcp://127.0.0.1:8529
endpoint = tcp://<internalserverIP>:8529
我确实启用了它们。
现在我可以在我的本地系统上使用下面的方法访问arango
curl --dump - http://<externalserverIP>:8529/_api/version
到目前为止还不错。
现在,当我尝试使用以下方式访问已安装的 ubuntu 服务器时:
curl --dump - http://127.0.0.1:8529/_api/version
我遇到以下错误:
Access to the page:
... has been denied for the following reason:
Blocked by Content Checking.
Categories:
Proxies
我在这里错过了什么。
它通过使用以下命令将代理重置为默认值来工作。
export http_proxy=
我在单节点 ubuntu 服务器上安装了 arangodb
,然后是 this
下面是我的 arangod.conf
文件:
endpoint = tcp://127.0.0.1:8529
endpoint = tcp://<internalserverIP>:8529
我确实启用了它们。
现在我可以在我的本地系统上使用下面的方法访问arango
curl --dump - http://<externalserverIP>:8529/_api/version
到目前为止还不错。
现在,当我尝试使用以下方式访问已安装的 ubuntu 服务器时:
curl --dump - http://127.0.0.1:8529/_api/version
我遇到以下错误:
Access to the page: ... has been denied for the following reason:
Blocked by Content Checking.
Categories:
Proxies
我在这里错过了什么。
它通过使用以下命令将代理重置为默认值来工作。
export http_proxy=