我正在遵循wso2-apim设置的https://wso2.com/api-management/install/docker/get-started/指南,但我在这些url上看不到任何网页。
- Publisher http://localhost:9443/publisher
- Store http://localhost:9443/store
- Admin console http://localhost:9443/admin
- Carbon console http://localhost:9443/carbon相反,在访问这些url时,它会下载一个二进制文件。
docker run -it -p 8280:8280 -p 8243:8243 api 9443:9443 --name api-manager wso2/wso2am:2.6.0
发布于 2019-05-30 16:28:30
如前所述,所有的urls都是错误的,正确的urls是:
Publisher - https://localhost:9443/publisher
Store - https://localhost:9443/store
Admin console - https://localhost:9443/admin
Carbon console - https://localhost:9443/carbon无论如何,当我到达url http://localhost:9443/publisher时,我不能下载“二进制文件”
我使用curl命令并得到如下结果:
curl -v http://127.0.0.1:9443/publisher
* Trying 127.0.0.1...
* TCP_NODELAY set
* Connected to 127.0.0.1 (127.0.0.1) port 9443 (#0)
> GET /publisher HTTP/1.1
> Host: 127.0.0.1:9443
> User-Agent: curl/7.54.0
> Accept: */*
>
* Connection #0 to host 127.0.0.1 left intact
P%你能补充更多的信息吗?你用的是什么浏览器?
https://stackoverflow.com/questions/56372699
复制相似问题