gpt4 book ai didi

ubuntu - gluster peer probe gluster - 返回请求超时

转载 作者:行者123 更新时间:2023-12-04 18:58:55 37 4
gpt4 key购买 nike

我正在尝试设置一个 2 节点 gluster 服务器。我已经在这两个节点中安装了 gluster-server 并启动了 glusterd 服务。
我能够从两台机器上对这些机器中的每台进行 ping 操作。
在此之后,当我尝试执行命令时

sudo gluster peer probe gluster1
这是我收到的错误
Error : Request timed out

最佳答案

因此,当我尝试在 AWS 的 3 节点 Ubuntu t3-small 集群上配置 gluster 时遇到了同样的问题。
对我有用的是
在 AWS 中为节点打开 TCP 端口 24007:24008 和 49152:49156。
在我的例子中,我们使用 terraform 来配置节点,因此 aws_security_group 会有一个配置:

  ingress {
from_port = 24007
to_port = 24008
protocol = "tcp"
cidr_blocks = ["0.0.0.0/0"]
}
ingress {
from_port = 49152
to_port = 49156
protocol = "tcp"
cidr_blocks = ["0.0.0.0/0"]
}
ingress {
from_port = 38465
to_port = 38467
protocol = "tcp"
cidr_blocks = ["0.0.0.0/0"]
}
ingress {
from_port = 111
to_port = 111
protocol = "tcp"
cidr_blocks = ["0.0.0.0/0"]
}
ingress {
from_port = 111
to_port = 111
protocol = "udp"
cidr_blocks = ["0.0.0.0/0"]
}
ingress {
from_port = 2049
to_port = 2049
protocol = "tcp"
cidr_blocks = ["0.0.0.0/0"]
}
此外,我必须在每个节点中公开本地运行这些命令的端口
sudo iptables -A INPUT -m state --state NEW -m tcp -p tcp --dport 24007:24008 -j ACCEPT
sudo iptables -A INPUT -m state --state NEW -m tcp -p tcp --dport 49152:49156 -j ACCEPT
sudo iptables -A INPUT -m state --state NEW -m tcp -p tcp --dport 38465:38467 -j ACCEPT
sudo iptables -A INPUT -m state --state NEW -m tcp -p tcp --dport 111:111 -j ACCEPT
sudo iptables -A INPUT -m state --state NEW -m tcp -p tcp --dport 2049:2049 -j ACCEPT
关于我如何到达这里的一些引用资料:
https://serverfault.com/questions/571386/firewall-iptables-rules-for-glusterfs
https://docs.rackspace.com/support/how-to/allow-web-traffic-in-iptables/
Ports
希望有帮助

关于ubuntu - gluster peer probe gluster - 返回请求超时,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70288247/

37 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com