I have 2 services running on my server. The first python service is working as expected.
# netstat -tulpn | grep LISTEN | grep 8888
tcp 0 0 0.0.0.0:8888 0.0.0.0:* LISTEN 1057/python
The second node service has started but not accessible from browser at http://somesite.com:5601
# netstat -tulpn | grep LISTEN | grep 5601
tcp 0 0 127.0.0.1:5601 0.0.0.0:* LISTEN 4740/node
I guess if I can change 127.0.0.1 to 0.0.0.0 just like the first command then it should work. But I am not sure ho to change the host only for the second service. I started the second service using the command
sudo systemctl start kibana.service
I am using ARM processor if that matters.