Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

SELINUX=enforcing

to

SELINUX=permissive

ipTables (for RedHat 6 / Centos 6)

ipTables is installed, active and blocks all ports except port 22 by default. You can disable ipTables completely or allow only port 80.

...

Code Block
languagebash
service iptables save

 

Firewall (for Redhat 7 / Centos 7)

You can disable firewalld completely or allow only port 80.

To disable firewalld completely, run the following commands:

Code Block
languagebash
service firewalld stop

then stop it from starting with

Code Block
languagebash
chkconfig firewalld off

 

Installing / Upgrading

All commands should be run as root (you can "sudo su" on Ubuntu). 

...