Hello Devs, I have a situation where I am struggling with apache mesos installation. To set up the mesos repository I have to do the following commands in a ubuntu based system
# Setup > sudo apt-key adv --keyserver keyserver.ubuntu.com --recv E56151BF > DISTRO=$(lsb_release -is | tr '[:upper:]' '[:lower:]') > CODENAME=$(lsb_release -cs) > # Add the repository > echo "deb http://repos.mesosphere.io/${DISTRO} ${CODENAME} main" | \ > sudo tee /etc/apt/sources.list.d/mesosphere.list > sudo apt-get -y update sudo apt-get -y update saying: Failed to fetch http://repos.mesosphere.io/linuxmint/dists/rebecca/main/binary-amd64/Packages 403 Forbidden I have fix the same in linux mint (ubuntu 14.04 bases linux distribution) after hard coding the ${DISTRO} ${CODENAME} as "ubuntu" "trusty" it did work for me. Now the problem is: > sudo apt-get install mesos marathon zookeeper command working properly but only marathon comes as a service in the *service --status-all* zookeepr and mesos are unrecognized services. *I*n this situation I can not move ahead as without zookeepr and mesos marathon is of no use. So please let me know if any one faced similar issues while installing other services*.* Thanks Pankaj
