Hi All, I have a process running on port 5070... I'm using CentOS 7. iptables is running firewalld should be stopped and disabled. When I telnet localhost 5070 I get connection refused. When I stop iptables I still get connection refused. netstat -tnlv | grep 5070 tcp 0 0 192.168.1.8:5070 0.0.0.0:* LISTEN so the process is running and listening. ps ax | grep firewalld returns nothing except the grep command. What else could be blocking this connection? Thanks, Jerry
On 10/19/16 2:03 PM, Jerry Geis wrote:> Hi All, > > I have a process running on port 5070... I'm using CentOS 7. > iptables is running firewalld should be stopped and disabled. > > When I telnet localhost 5070 I get connection refused. > > When I stop iptables I still get connection refused. > > netstat -tnlv | grep 5070 > tcp 0 0 192.168.1.8:5070 0.0.0.0:* LISTEN > > so the process is running and listening. > >The process is not listening on localhost. Try telnet 192.168.1.8 5070 Jack