Search code examples
mesosapache-aurora

Start Apache Mesos slave with Docker containerizer


I have a setup with Mesos and Aurora, I have dockerized my application which I need to deploy, now i have to start mesos slave with the docker support, but I'm not able to start the mesos slave with docker support, I'm trying the following:

sudo service mesos-slave --containerizers=docker,mesos start

this gives me

mesos-slave: unrecognized service

but if I try :

sudo service mesos-slave start

the slave gets activated.

Can anyone let me know how to solve this issue.


Solution

  • You should also inform people about what OS you're using, otherwise it's mostly guesswork.

    Normally, your /etc/mesos-slave/containerizers should contain the following to enable Docker support:

    docker,mesos
    

    Then, you'd have to restart the service:

    sudo service mesos-slave restart
    

    References: