openshift / origin-web-console

Web Console for the OpenShift Application Platform
https://www.openshift.org/
Apache License 2.0
123 stars 230 forks source link

Cannot open web console #3169

Closed lian233 closed 4 years ago

lian233 commented 4 years ago

step 1: docker run -d --name "origin" \ --privileged --pid=host --net=host \ -v /:/rootfs:ro -v /var/run:/var/run:rw -v /sys:/sys -v /sys/fs/cgroup:/sys/fs/cgroup:rw \ -v /var/lib/docker:/var/lib/docker:rw \ -v /var/lib/origin/openshift.local.volumes:/var/lib/origin/openshift.local.volumes:rslave openshift/origin start

step 2: open https://172.16.8.27:8443/console

image

spadgett commented 4 years ago

Running OpenShift this way does not install the web console since it is no longer part of the master. You'll need to use oc cluster up instead.

https://github.com/openshift/origin/blob/release-3.11/docs/cluster_up_down.md

lian233 commented 4 years ago

oh thank you