I have installed and web application which is running on port 8080 on centOS. I only have command line access (through putty) to that machine. I have tried to access that application from my windows machine from which I am connected through putty, but it is giving connection time out error.
Then I have tried to open port 8080. I have added following entry into the iptables.
-A INPUT -m state --state NEW -m tcp -p tcp --dport 8080 -j ACCEPT
After adding this into the iptables I have restarted it with -
/etc/init.d/iptables restart
But still I am not able to access that application from my windows machine.
Am I doing any mistake or missing something?
First, you should disable
selinux
, edit file/etc/sysconfig/selinux
so it looks like this:Save file and restart system.
Then you can add the new rule to
iptables
:and restart iptables with
/etc/init.d/iptables restart
If it doesn't work you should check other network settings.
The following configs works on Cent OS 6 or earlier
As stated above first have to disable selinux.
Step 1 nano /etc/sysconfig/selinux
Make sure the file has this configurations
Then restart the system
Step 2
Step 3
For Cent OS 7
step 1
Step 2