docker websphere 无法获取管理控制台
docker websphere can't get the admin console
我 运行 WebSphere docker。当我暴露9080端口时,我可以得到"Welcome to Liberty"页面(http://localhost:9080).
docker run -d -e LICENSE=accept -p 9080:9080 docker.io/websphere-liberty
CONTAINER ID: 1d1eb3db6b03
IMAGE:docker.io/websphere-liberty
COMMAND:"/opt/ibm/wlp/bin/ser"
CREATED:17 seconds ago
STATUS:Up 15 seconds
PORTS:9443/tcp, 0.0.0.0:9080->9080/tcp
NAMES: naughty_ritchie
问题来了。当我暴露端口 9060 时,我无法获得管理控制台页面 (http://localhost:9060/admin)。有什么建议吗?
docker run -d -e LICENSE=accept -p 9060:9060 docker.io/websphere-liberty
CONTAINER ID: 8d9cc97d2656
IMAGE:docker.io/websphere-liberty
COMMAND:"/opt/ibm/wlp/bin/ser"
CREATED:4 minutes ago
STATUS:Up 4 minutes
PORTS: 9080/tcp, 9443/tcp, 0.0.0.0:9060->9060/tcp
NAMES:thirsty_hodgkin
根据您的 URL 和端口,您正在尝试访问 WebSphere Liberty Profile 服务器上的 WebSphere "traditional" 管理控制台。如果您想要 UI,请查看管理中心功能:
您还需要为正常操作和管理中心本身公开更多端口。
已使用 adminCenter 创建图像
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
在server.xml中,将adminCenter-1.0放入featuremanager的feature中。
`
我 运行 WebSphere docker。当我暴露9080端口时,我可以得到"Welcome to Liberty"页面(http://localhost:9080).
docker run -d -e LICENSE=accept -p 9080:9080 docker.io/websphere-liberty
CONTAINER ID: 1d1eb3db6b03
IMAGE:docker.io/websphere-liberty
COMMAND:"/opt/ibm/wlp/bin/ser"
CREATED:17 seconds ago
STATUS:Up 15 seconds
PORTS:9443/tcp, 0.0.0.0:9080->9080/tcp
NAMES: naughty_ritchie
问题来了。当我暴露端口 9060 时,我无法获得管理控制台页面 (http://localhost:9060/admin)。有什么建议吗?
docker run -d -e LICENSE=accept -p 9060:9060 docker.io/websphere-liberty
CONTAINER ID: 8d9cc97d2656
IMAGE:docker.io/websphere-liberty
COMMAND:"/opt/ibm/wlp/bin/ser"
CREATED:4 minutes ago
STATUS:Up 4 minutes
PORTS: 9080/tcp, 9443/tcp, 0.0.0.0:9060->9060/tcp
NAMES:thirsty_hodgkin
根据您的 URL 和端口,您正在尝试访问 WebSphere Liberty Profile 服务器上的 WebSphere "traditional" 管理控制台。如果您想要 UI,请查看管理中心功能:
您还需要为正常操作和管理中心本身公开更多端口。
已使用 adminCenter 创建图像
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
在server.xml中,将adminCenter-1.0放入featuremanager的feature中。 `