Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Mesos Failed to connect error to IP:5050

I am new to Mesos and just finished setting up mesos and along with zookeeper on my test server.

Unfortunately I keep getting this error message on my mesos console indicating i am unable to connect to mesos on port 5050 and can't seem to figure out why.

I have included the error in the screen shot below

The mesos log files doesn't point to why the error is showing either.

enter image description here

like image 211
crusadecoder Avatar asked Nov 16 '16 20:11

crusadecoder


2 Answers

I resolved the problem by this:

./bin/mesos-master.sh --ip=x.x.x.x --work_dir=/var/lib/mesos --hostname=x.x.x.x
like image 183
Zhang Avatar answered Sep 28 '22 23:09

Zhang


We can avoid this problem by starting mesos-master with following option:

--ip=xx.xx.xx.xx --hostname_lookup=false
like image 43
phoebe chen Avatar answered Sep 29 '22 00:09

phoebe chen