beegfs 7.3.2版本默认强制身份验证身份。所以在安装或升级后,没有配置authfile会导致服务无法启动。
解决办法有两种:
connDisableAuthentication(不推荐)vim /etc/beegfs/beegfs-mgmtd.conf
......
connDisableAuthentication = true
......使用dd创建一个随机密钥
dd if=/dev/random of=/etc/beegfs/connauthfile bs=128 count=1修改文件所属者为root并只读
chown root:root /etc/beegfs/connauthfile
chmod 400 /etc/beegfs/connauthfile然后修改各个服务的配置文件,一般有:
修改上述配置文件中的
vim /etc/beegfs/beegfs-***.conf
......
connAuthFile = /etc/beegfs/connauthfile
......重启服务
systemctl restart beegfs-mgmtd.service
systemctl restart beegfs-meta.service
systemctl restart beegfs-storage.service
systemctl restart beegfs-client.service原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。
如有侵权,请联系 cloudcommunity@tencent.com 删除。
原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。
如有侵权,请联系 cloudcommunity@tencent.com 删除。