在使用网上的docs https://github.com/yeasy/docker_practice/blob/master/mesos/installation.md
docker run --net="host" \
-p 5050:5050 \
-e "MESOS_HOSTNAME=${HOST_IP}" \
-e "MESOS_IP=${HOST_IP}" \
-e "MESOS_ZK=zk://${HOST_IP}:2181/mesos" \
-e "MESOS_PORT=5050" \
-e "MESOS_LOG_DIR=/var/log/mesos" \
-e "MESOS_QUORUM=1" \
-e "MESOS_REGISTRY=in_memory" \
-e "MESOS_WORK_DIR=/var/lib/mesos" \
-d \
garland/mesosphere-docker-mesos-master
status为exited 请问个怎么debug思路,也没有log
Run steps
1. Set the IP address of this machine
2. Run ZooKeeper container
3. Run the Mesos Master container
4. Run Marathon container
5. Run Mesos Slave container
I ran it again and there was no problem. You can view the container logs through the docker logs command to troubleshoot.