红联Linux门户
Linux帮助

CentOS 6.6安装nfs网络文件系统

发布时间:2015-06-30 09:59:38来源:linux网站作者:caoguo

一、介绍

nfs网络文件系统的,大部分用在内网文件共享,比如,对集群上传文件做共享,经常用在图片部分,当然数据量大了还是要做分离,做为专门的接口比较好,介绍一下基本安装环境:

1)Cnetos6.6

2)nfs-utils-1.2.3

3) rpcbind-0.2.0


二、安装

yum install -y rpcbind nfs-utils


三、配置

echo "/data 192.168.19.145(rw)" >/etc/exports    #指定目录 运行挂载主机 以及有哪些权限


四、启动

$ /etc/init.d/rpcbind start
$ /etc/init.d/nfslock start
$ /etc/init.d/nfs start

$ chkconfig rpcbind on
$ chkconfig nfslock on
$ chkconfig nfs on
$ iptables -t filter -A INPUT -s 192.168.19.145 -m state --state NEW -j ACCEPT

CentOS 6.6安装nfs网络文件系统

#记得允许防火墙

CentOS 6.6安装nfs网络文件系统


五、检查

$ ps aux|grep nfs
$ ps aux|grep rpcbind
$ netstat -ntlp

CentOS 6.6安装nfs网络文件系统

#这个东东端口到是开了一堆

CentOS 6.6安装nfs网络文件系统


六、客户端测试

$ yum install -y nfs-utils                #安装
$ showmount -e 192.168.19.128              #查看共享目录
$ mount -t nfs 192.168.19.128:/data /mnt  #挂载

CentOS 6.6安装nfs网络文件系统


CentOS Linux上配置NFS网络文件系统以及客户端使用:http://www.linuxdiyf.com/linux/10163.html

NFS网络文件系统挂载在A8板子上:http://www.linuxdiyf.com/linux/11945.html

网络文件系统与Linux NFS:与以往一样有用并在不断演变:http://www.linuxdiyf.com/linux/8745.html

Gentoo Linux下配置NFS(网络文件系统):http://www.linuxdiyf.com/linux/4988.html