当前位置:首页 > linux教程 > 列表

Glusterfs在CentOS下无法挂载的原因及解决办法

发布:smiling 来源: PHP粉丝网  添加日期:2015-04-21 16:45:55 浏览: 评论:0 

CentOS是Linux发行的社区企业操作系统,不少朋友在使用时遇到了无法挂载Glusterfs的难题,深究原因发现是机器间网络不通畅导致,接下来小编就将教大家轻松搞定CentOS下无法挂载Glusterfs的问题.

执行的mount命令:

mount target_host:/volume_name current_path

执行mount命令后,提示错误信息:

  1. /usr/sbin/start-statd: line 8: systemctl: command not found 
  2. mount.nfs: rpc.statd is not running but is required for remote locking. 
  3. mount.nfs: Either use '-o nolock' to keep locks local, or start statd. 
  4. mount.nfs: Operation not permitted 

一般情况下,用到Glusterfs存储的地方至少都是两台机器来配置完成的,在各自的机器上能够正常的启动相应的服务,然而,在执行gluster volume info命令查看定义的volume信息时,会发现非本机存储的机器状态为offline,这时无论是在本地还是其他地方做mount 时都不会成功,会提示timeout(链接超时)—— 这就是问题所在,网络不通畅.

这时,需要处理机器间的网络配置,这里有两点:

1、查看各机器的iptables配置,备份之前的iptables配置(/etc/sysconfig/iptables),然后导出生效的iptables(service iptables save),查看核对现有的与导出前的配置是否存在不同,存在则修复,最后重启iptables服务(service iptables restart).

2、查看各机器的IP配置是否发生变化(ifconfig),是否同一网段,若配置存在变动,则更改回原始配置,重启网络服务(service network restart).

以上网络问题解决后,再次执行mount target_host:/volume_name current_path(一般不需要参数-t glusterfs(完成对gluster管理的volume的挂载,此时,如果挂载失败,则加上-t参数,即mount -t glusterfs target_host:/volume_name current_path.

Tags: Glusterfs CentOS

分享到: