您的位置:首页 > 大数据 > 人工智能

Mairadb Galera iptables配置,需要开启的端口号

2014-05-04 16:30 211 查看
Firewall Settings

By default, Galera Cluster may require all or some of the following ports to be open between the nodes:

3306 MySQL client connections and mysqldump SST
4567 Galera Cluster replication traffic
4568 IST
4444 all SSTs besides mysqldump

For example, in a LAN environment the iptables configuration on each node may look as follows:
# iptables -A INPUT -i eth0 -p tcp -m tcp --source 192.168.0.1/24 --dport 3306 -j ACCEPT
# iptables -A INPUT -i eth0 -p tcp -m tcp --source 192.168.0.1/24 --dport 4567 -j ACCEPT
# iptables -A INPUT -i eth0 -p tcp -m tcp --source 192.168.0.1/24 --dport 4568 -j ACCEPT
# iptables -A INPUT -i eth0 -p tcp -m tcp --source 192.168.0.1/24 --dport 4444 -j ACCEPT

In a WAN environment, this setup may be tedious to manage. Alternatively, with not much loss of security, you can simply open a full range of ports between trusted hosts:
# iptables -A INPUT -p tcp -s 64.57.102.34 -j ACCEPT
# iptables -A INPUT -p tcp -s 193.166.3.2 -j ACCEPT
本文出自 “飞羽竹芋” 博客,请务必保留此出处http://atlas.blog.51cto.com/5745128/1406199
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: