October 30, 2017 | In: Správa linuxu
Allowing Redis port – iptables
The config for IPTables is located:
/etc/sysconfig/iptables
I added the following line to it:
-A INPUT -p tcp -m state --state NEW -m tcp --dport 6379 -j ACCEPT
Reloaded IPtables:
sudo service iptables reload
Sanity check:
sudo iptables -S
Comments are closed.