NFS精简版配置方法

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了NFS精简版配置方法相关的知识,希望对你有一定的参考价值。


此实验的前提是防火墙需关闭。

1.关闭iptables

/etc/init.d/iptables stop

/etc/init.d/iptables status 

2.关闭selinux

setenforce 0  

getenforce  

Permissive ---出现这个单词即代表selinux临时关闭,如需永久关闭则需修改/etc/sysconfig/selinux配置文件

NFS服务端:
1)检查系统版本
cat /etc/redhat-release
uname -r
uname -m
2)检查并安装nfs-utils rpcbind  
yum -y install nfs-utils
yum -u install rpcbind  
rpm  -qa nfs-utils rpcbind
3)启动rpcbind/nfs服务并检查
/etc/init.d/rpcbind/  start
lsof -i :111  
ps -ef |grep rpcbind
rpcinfo -p localhost

/etc/init.d/nfs  start
/etc/init.d/nfs  status
rpcinfo -p localhost
4)设置为开机自启动
chkconfig nfs on
chkconfig rpcbind on
chkconfig --list nfs
chkconfig --list rpcbind
5)配置nfs配置文件,共享/data目录
cat >>/etc/exports <<EOF
/data 10.0.0.0/24(rw,rsync)
EOF

cat /etc/exports  
6)创建共享目录及授权
mkdir  /data
ll /data
chown -R nfsnobody.nfsnobody /data

7)平滑启动nfs服务并检查服务
/etc/init.d/nfs reload
exportfs -v(这个方法和上面的作用一样)   

NFS客服端配置:

1)检查系统版本
cat /etc/redhat-release
uname -r
uname -m
2)检查并安装nfs-utils rpcbind  
yum -y install nfs-utils
yum -u install rpcbind  
rpm  -qa nfs-utils rpcbind
3)启动rpcbind服务并检查
/etc/init.d/rpcbind/  start
lsof -i :111  
ps -ef |grep rpcbind
rpcinfo -p localhost
4)设置为开机自启动
chkconfig rpcbind on
chkconfig --list rpcbind  

5)检查服务端的nfs是否正常
showmount -e 10.0.0.11:/data  
如出现故障则:检查网络是否通,及其端口是否开启
ping 10.0.0.13  
telnet 10.0.0.13 111

6)挂载并测试
mount -t nfs 10.0.0.0.11:/data  /mnt

df -Th   ---检查是否挂载成功   

7)设置开始自动挂载
echo "mount.nfs 10.0.0.11:/data  /mnt" >>/etc/rc.local   

如需详细步骤请点击http://purify.blog.51cto.com/10572011/1767039

本文出自 “叫醒你的不是闹钟而是梦想” 博客,请务必保留此出处http://purify.blog.51cto.com/10572011/1786833

以上是关于NFS精简版配置方法的主要内容,如果未能解决你的问题,请参考以下文章

axios:基本使用常用配置项create方法请求和响应拦截器取消请求

linux 数据备份(NFS映射方法)——问题调试篇

NFS-网络文件共享服务

nfs配置

实训三 配置和使用NFS服务器

NFS服务器搭建与配置