Created 02-05-2018 07:30 AM
Hello All,
I have installed ambari and it got successfully got running on a vm.
but when i check ipaddress:8080, it is not getting access.
When i run the command netstat -nl | head
Output:-
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address Foreign Address State
tcp6 0 0 :::5901 :::* LISTEN
tcp6 0 0 :::8080 :::* LISTEN
tcp6 0 0 :::8081 :::* LISTEN
it is running under tcp6 protocal.
how can i make it to run under tcp so that i can access through out the network.
Any suggestions,
Thanks,
Mohan V
Created 02-05-2018 12:16 PM
Try making below changes as per the link provided:
listen 0.0.0.0:80 listen 0.0.0.0:8080
Here is the link of document which could be helpful:
Created 07-16-2019 01:53 PM
Created 07-16-2019 01:50 PM
https://www.thegeekdiary.com/centos-rhel-7-how-to-disable-ipv6-on-a-specific-interface-only/
# vi /etc/sysctl.conf net.ipv6.conf.eth0.disable_ipv6 = 1
and then restart you Ambari server:
sudo ambari-server restart
Created 09-02-2019 01:44 AM
What are the impacts on other ports if I change from TCP6 to TCP? And will my Ambari server work on TCP?