Needed to disable the firewall on a new Centos virtual machine I'm setting up. Used the following commands from NixCraft Disable Linux Firewall Type the following two commands: [ root@machine ~] /etc/init.d/iptables save [ root@machine ~] /etc/init.d/iptables stop Turn off firewall on boot: [ root@machine ~] chkconfig iptables off Enable Linux Firewall Type the following command to turn on iptables firewall: [ root@machine ~] /etc/init.d/iptables start Turn on firewall on boot: [ root@machine ~]# chkconfig iptables on
Working my way through the dba day to day activities sharing what I learn along the way. Mostly a place to save my own notes for later use and hopefully someone else might find it useful.