配置NFS Server
Posted seabiscuit0922
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了配置NFS Server相关的知识,希望对你有一定的参考价值。
1. 环境设置
1.1 关闭防火墙
# service iptables stop
# chkconfig iptables off
1.2 关闭SELinux
# vim /etc/selinux/config
SELINUX=disabled
# /usr/sbin/sestatus -v #查看selinux状态
1.3 重启系统
2. 安装NFS
# rpm -qa | grep nfs
3. 服务器配置
3.1 配置/etc/exports
# mkdir nfs_share
# vim /etc/exports
/root/nfs_share *(rw,no_root_squash)
4. 启动NFS
4.1 启动NFS
# service rpcbind start
# service nfs start
4.2 查看NFS状态
# service rpcbind status
# service nfs status
5. 客户端挂载NFS
5.1 查看可挂载的目录
# showmount -e 172.16.55.176
注:如果看不到可挂载目录,就在server节点重启nfs服务
# service nfs restart
5.2 挂载NFS目录
# mount -t nfs -o rw 172.16.55.176:/root/nfs_share /nfs
以上是关于配置NFS Server的主要内容,如果未能解决你的问题,请参考以下文章
NFS介绍NFS服务端配置安装配置 NFS配置选项 客户端的配置