我正在尝试使用以下配置创建rest-api实例: 其余-api.json
{
"rest-api": {
"name": "restdb-api",
"database": "restdb",
"port": "8003",
"xdbc-enabled": true,
"forests-per-host": 1,
"error-format": "json"
}
}
curl --anyauth --user admin:admin -i -X POST -d @"./REST/rest-api.json" -H "Content-type: application/json" http://localhost:8002/LATEST/rest-apis
端点返回201创建,但我无法访问http://localhost:8003处创建的端点。我尝试过使用其他端口,但同样的事情正在发生。端口8003没有监听。请帮我解决这个问题。
HTTP/1.1 401 Unauthorized
Server: MarkLogic
WWW-Authenticate: Digest realm="public", qop="auth", nonce="36473d01f5e45a:ND9/6NHD0sw9o2y/xad/uQ==", opaque="e9594a1b7e019a97"
Content-Type: text/html; charset=utf-8
Content-Length: 209
Connection: Keep-Alive
Keep-Alive: timeout=5
HTTP/1.1 201 Created
Server: MarkLogic
Content-Length: 0
Connection: Keep-Alive
Keep-Alive: timeout=5
答案 0 :(得分:2)
由于您说您在本地docker容器上运行,因此可能需要发布端口。
请参阅Docker Expose
请注意链接 - " EXPOSE指令实际上不会发布端口。它在构建映像的人和运行容器的人之间起到一种文档的作用,关于哪些端口要发布。要在运行容器时实际发布端口,请在docker run上使用-p标志发布和映射一个或多个端口,或使用-P标志发布所有公开的端口并将它们映射到高阶端口。"
希望有所帮助!