CentOS disables Linux firewall (iptables) and SELinux

Source: Internet
Author: User
1. disable the firewall. 1. it will take effect permanently after restart: Enable: chkconfigiptableson disable: chkconfigiptablesoff2. it will take effect immediately after restart: Enable: serviceiptablesstart disable: serviceiptablesstop when the firewall is enabled, make the following settings, enable the relevant Port, modify/

1. disable the firewall

1. it takes effect permanently after restart:

Enable: chkconfig iptables on

Close: chkconfig iptables off

2. it takes effect immediately and becomes invalid after restart:

Enable: service iptables start

Disable: service iptables stop

When the firewall is enabled, make the following settings to enable the relevant Port, modify the/etc/sysconfig/iptables file, and add the following content:

-A input-m state -- state NEW-m tcp-p tcp -- dport 80-j ACCEPT # Allow port 80 to pass the firewall

-A input-m state -- state NEW-m tcp-p tcp -- dport 3306-j ACCEPT # Allow Port 3306 to pass the firewall

Note: Many users add these two rules to the last line of the firewall configuration, resulting in firewall startup failure,

The correct rule should be added to the default port 22.

 

II. disable SELinux

Vim/etc/selinux/config # Change to SELINUX = disabled

# Save and exit, restart the server

Init 6

 

 

Disable SeLinux

# Permanently disabled. restart to take effect.

Sed-I's/SELINUX = enforcing/SELINUX = disabled/g'/etc/selinux/config

# Temporarily disabled, no need to restart

Setenforce 0

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.