Reputation: 31
I installed kylin on docker with this command docker pull apachekylin/apache-kylin-standalone:3.0.0-alpha2
and it was fine.
And then I ran
docker run -d \
-m 8G \
-p 7070:7070 \
-p 8088:8088 \
-p 50070:50070 \
-p 8032:8032 \
-p 8042:8042 \
-p 60010:60010 \
apachekylin/apache-kylin-standalone:3.0.0-alpha2
But when I try to reach http://127.0.0.1:7070/
or http://127.0.0.1:60010/
it does not open. http://127.0.0.1:50070/
and 127.0.0.1:8088
are working properly.
OS: Ubuntu 18.
How can i fix this?
Upvotes: 1
Views: 584
Reputation: 23
i change the docker memory to 8G later it works. maybe you can try it.
Upvotes: 1