...
自签名执行:sudo openssl req -x509 -newkey rsa:4096 -keyout key.pem -out cert.pem -days 3650 -nodes -subj "/CN=beegfs-cluster"mgmt" -addext "subjectAltName = DNS:beegfs-mgmt,IP:192.168.32.178"
注意:DNS:beegfs-mgmt,IP:192.168.32.178是必须的,这是8号机的IP,之后在使用管理节点增加/删除节点的时候会用到,否则会报TSL认证的错误。
第七步:启动
sudo systemctl start beegfs-mgmtd # 在管理节点执行
sudo systemctl start beegfs-meta # 在元节点执行
sudo systemctl start beegfs-storage # 在存储节点执行
sudo systemctl start beegfs-client # 在每个机器上执行
...