linux redhat6.5中 搭建NFS服务
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux redhat6.5中 搭建NFS服务相关的知识,希望对你有一定的参考价值。
NFS(Network File System)即网络文件系统,是FreeBSD支持的文件系统中的一种,它允许网络中的计算机之间通过TCP/IP网络共享资源。在NFS的应用中,本地NFS的客户端应用可以透明地读写位于远端NFS服务器上的文件,就像访问本地文件一样。
首先准备两台linux (一台最为服务器 一台作为客户机)
通过搭建NFS 使得客户机能访问服务器 并且文件同步
1:在服务器上配置
#yum install nfs-utils rpcbind -y //安装 nfs-utils rpcbind 软件
nfs-utils 用于NFS共享发布和访问
rpcbind 用于远端过程调用机制支持
#chkconfig nfs on
#chkconfig rpcbind on //开机自启动
#mkdir -p /opt/wwwroot //创建目录wwwroot
#vim /etc/exports //编辑exports
/opt/wwwroot 192.168.100.0/24(rw,sync,no_root_squash)
//192.168.100.0/24网段访问 /opt/wwwroot时 会有以下权限
rw:允许读写 sync:同步写入
no_root_squash:表示客户机以root身份访问时赋予本地root权限
2:service rpcbind restart //重启rpcbind服务
service nfs restart //重启nfs服务
netstat -ntap | grep rpcbind //查看111端口是否开启
showmount -e 192.168.100.101 //本机中查看NFS文件
service iptables stop
setenforce 0 //关闭防火墙
3:切换到客户机
#yum install nfs-utils rpcbind -y //安装 nfs-utils rpcbind 软件
#chkconfig nfs on
#chkconfig rpcbind on //开机自启动
#showmount -e 192.168.100.101 //查看服务器中的NFS文件
#mkdir /share //创建目录share
#mount 192.168.100.101:/opt/wwwroot /share //手动挂载
#tail -1 /etc/mtab //确认挂载结果
#vim /share/index.html //测试添加文件,同时服务端也会同步添加
4:切换到服务器
查看服务器wwwroot里 可以看到文件同步成功
以上是关于linux redhat6.5中 搭建NFS服务的主要内容,如果未能解决你的问题,请参考以下文章
linux redhat6.5 中 搭建Postfix邮件服务器