Today I created a load balancer and assigned to it 3 droplets (all 3 host parse servers), but it doesn’t transfer the traffic to them. It doesn’t even pass the health checks!
All 3 of my parse servers, have 22 and 1337 as their only open inbound ports.
Here’s the load balancer’s setup.
Any idea what is wrong?
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Hi there,
Have you tried changing the protocol from HTTP to TCP?
Also if you try to access your Parse Servers directly, does it work as expected? In some cases it is possible that if your service is binging on
127.0.0.1:1337
it would not accept external traffic, so you would need to change it to0.0.0.0:1337
.Best,
Bobby