我在码头上运行WebSphere。当我公开端口9080时,我可以得到“欢迎自由”页面(http://localhost:9080)。
docker run -d -e LICENSE=accept -p 9080:9080 docker.io/websphere-liberty
容器ID: 1d1eb3db6b03图片:docker.io/websphere-IMAGE 命令:“/opt/ibm/wlp/bin/ser” 创建:17秒钟前 状态:上升15秒 端口:9443/tcp,0.0.0.0:9080->9080/tcp 姓名: naughty_ritchie
这就是问题所在。当我暴露端口9060时。我无法获得管理控制台页面(http://localhost:9060/admin)。有什么建议吗?
docker run -d -e LICENSE=accept -p 9060:9060 docker.io/websphere-liberty
容器ID: 8d9cc97d2656图片:docker.io/websphere-IMAGE 命令:“/opt/ibm/wlp/bin/ser” 创建:4分钟前 状态:上升4分钟 端口: 9080/tcp,9443/tcp,0.0.0.0:9060->9060/tcp NAMES:thirsty_hodgkin
发布于 2016-05-16 20:33:54
FROM websphere-liberty RUN installUtility install adminCenter-1.0 --acceptLicense COPY server.xml /opt/ibm/wlp/usr/servers/defaultServer/ ENV LICENSE accept EXPOSE 80 9080 9448 9443 9060
创建图像发布于 2016-05-12 18:51:45
基于您的URL和端口,您正在尝试访问WebSphere自由配置文件服务器上的WebSphere“传统”管理控制台。如果您想要UI,请查看Admin Center功能:
您还需要为正常操作和管理中心本身公开更多的端口。
https://stackoverflow.com/questions/37194354
复制相似问题