In Linux, you may encounter minor problems when configuring the firewall to enable port 80 and port 3306.

Source: Internet
Author: User

In Linux, you may encounter minor problems when configuring the firewall to enable port 80 and port 3306.
Zookeeper

Vi/etc/sysconfig/iptables

-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.


The firewall rules are as follows:

######################################
# Firewall configuration written by system-config-firewall
# Manual customization of this file is not recommended.
* Filter
: Input accept [0: 0]
: Forward accept [0: 0]
: Output accept [0: 0]
-A input-m state-state ESTABLISHED, RELATED-j ACCEPT
-A input-p icmp-j ACCEPT
-A input-I lo-j ACCEPT
-A input-m state-state NEW-m tcp-p tcp-dport 22-j ACCEPT
-A input-m state-state NEW-m tcp-p tcp-dport 80-j ACCEPT
-A input-m state-state NEW-m tcp-p tcp-dport 3306-j ACCEPT
-A input-j REJECT-reject-with icmp-host-prohibited
-A forward-j REJECT-reject-with icmp-host-prohibited
COMMIT
#####################################

/Etc/init. d/iptables restart
# Restart the firewall to make the configuration take effect.

This article mainly records possible problems. As I encountered this problem, I put the newly added rules on the last line of the configuration file, which causes mysql to be unable to access remotely.

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.