背景:VMware15.0 ubuntu16.04-64bit 32G RAM + 16Core CPU
/etc/hosts: 192.168.79.130 本地主机
这样做(并在出现提示时输入 sudo 密码):
git clone https://gerrit.acumos.org/r/system-integration
apt-get -y update
apt-get -y install docker-ce=18.06.3~ce~3-0~ubuntu
if [[ "$(id -nG "$USER" | grep docker)" == "" ]]; then sudo usermod -aG docker $USER; fi
sudo visudo #add
jp ALL=(ALL:ALL) NOPASSWD:ALL
# Logged out and in again and verified that my user is in the docker group
cd system-integration/tools/
sudo bash setup_k8s_stack.sh setup
cd
sudo bash system-integration/AIO/setup_prereqs.sh k8s localhost $USER generic 2>&1 | tee aio_prep.log
# When "Prerequisites setup is complete" messages is displayed I continue with
cd system-integration/AIO
sudo bash oneclick_deploy.sh 2>&1 | tee aio_deploy.log
成功实施有以下提示:</p>
oneclick_deploy.sh main:384 (Tue Sep 24 20:39:44 PDT 2019) Deploy is complete.
You can access the Acumos portal and other services at the URLs below,
assuming hostname "localhost" is resolvable from your workstation:
Portal: https://localhost
Common Data Service Swagger UI: https://localhost/ccds/swagger-ui.html
Portal Swagger UI: https://localhost/api/swagger-ui.html
Onboarding Service Swagger UI: https://localhost/onboarding-app/swagger-ui.html
Kibana: http://localhost:30561/app/kibana
Nexus: http://localhost:30881
当我使用 chrome 访问 Acumos 门户(“ https://localhost ”)时,提示:
This site can’t be reached
localhost refused to connect.
如果访问“ https://192.168.79.130 ”,提示:
default backend - 404
只有“ http://192.168.79.130:30881/ ”和“ http://192.168.79.130:30561/app/kibana ”可以访问成功。但是如果将“192.168.79.130”替换为“localhost”,则浏览器的状态为“正在加载”。
我确定它有问题。我真诚地希望再次得到指导。谢谢你。