In this recipe, we will configure logging options that will allow us to debug the state of Mesos.
Logging and debugging
Getting ready
We will assume Mesos is available on localhost port 5050. The steps provided here will work for either master or agents.
How to do it...
When Mesos is installed from pre-built packages, the logs are by default stored in /var/log/mesos/. When installing from a source build, storing logs is disabled by default. To change the log store location, we need to edit /etc/default/mesos and set the LOGS variable to the desired destination. For some...