首页 > 代码库 > NFS 基础配置

NFS 基础配置

一、NFS 服务端配置

yum install -y nfs-utils rpcbind                     # 安装 NFS 软件包,nfs-utils 是 NFS 服务的主程序,rpcbind 是 RPC 服务的主程序
/etc/init.d/rpcbind start # 启动 RPC 服务
/etc/init.d/nfs start # 启动 NFS 服务
echo "/etc/init.d/rpcbind start" >> /etc/rc.local # 设置 RPC 服务开机启动
echo "/etc/init.d/nfs start" >> /etc/rc.local # 设置 NFS 服务开机启动
[root@localhost ~]# vim /etc/exports                 # NFS 配置文件/data 192.168.5.0/24(rw)                             # /data 是要共享的目录,10.0.0.0/24 是允许的客户端,(rw) 是权限,表示允许读和写
/home 192.168.5.0/24(ro) # 注意,如果有多个权限用逗号隔开,且不能有空格
[root@localhost ~]# exportfs -rv # 重新加载 NFS 服务,使配置生效

 

二、NFS 客户端配置

yum install -y rpcbind nfs-utils                       /etc/init.d/rpcbind start                             # 只需启动 RPC 服务setenforce 0                                          # 关闭 SELinuxiptables -F                                           # 关闭防火墙
showmount -e 192.168.5.131 # 查看 NFS 服务端的共享目录mount -t nfs 192.168.5.131:/data /mnt # 挂载 NFS 共享目录,-t nfs 是挂载的格式类型,表示把远程主机 192.168.5.131 的 /data 目录挂载到本地的 /mnt 目录echo "/etc/init.d/rpcbind start" >> /etc/rc.local # 设置开机启动并挂载echo "/bin/mount -t nfs 192.168.5.131:/data /mnt" >> /etc/rc.local
df -h # 查看挂载信息

 

 

 

 

    

NFS 基础配置