[[email protected] ~]# cat /etc/redhat-release =》查看操作系统
CentOS release 6.9 (Final)
[[email protected] ~]# uname -r =》查看操作系统内核
2.6.32-696.el6.x86_64
[[email protected] ~]# uname -m =》查看操作系统位数
x86_64
准备2台虚拟机,2台都安装nfs-utils rpcbind工具。
nfs01为服务器端,web01为客户端
nfs01IP地址:172.16.1.31 web01IP地址为:172.16.1.8
1、安装nfs-utils rpcbind
‘yum install nfs-utils rpcbind -y #安装nfs-utils rpcbind
rpm -aq nfs-utils rpcbind #查看nfs-utils和rpcbind是否安装好
rpcbind-0.2.0-13.el6_9.1.x86_64
nfs-utils-1.2.3-75.el6_9.x86_64
安装完毕注意在nfs01服务端启动顺序 先启动rpcbind,在启动nfs-utils要不然容易报错。
2、启动rpcbind
/etc/init.d/rpcbind start #启动rpcbind
[[email protected] ~]# netstat -lntup |grep rpc #查看rpc端口是否开启成功,prc端口是111
tcp 0 0 0.0.0.0:111 0.0.0.0: LISTEN 38496/rpcbind
tcp 0 0 :::111 ::: LISTEN 38496/rpcbind
udp 0 0 0.0.0.0:111 0.0.0.0: 38496/rpcbind
udp 0 0 0.0.0.0:935 0.0.0.0: 38496/rpcbind
udp 0 0 :::111 ::: 38496/rpcbind
udp 0 0 :::935 ::: 38496/rpcbind
[[email protected] ~]# rpcinfo -p localhost #查看有没有资源
program vers proto port service
100000 4 tcp 111 portmapper =》111是主端口
100000 3 tcp 111 portmapper
100000 2 tcp 111 portmapper
100000 4 udp 111 portmapper
100000 3 udp 111 portmapper
100000 2 udp 111 portmapper
3、nfs01服务端启动nfs
[[email protected] ~]# /etc/init.d/nfs start #启动nfs服务
[[email protected] ~]# rpcinfo -p localhost #再次查看会多出很多资源
4、设置nfs服务和rpc服务开机启动
[[email protected] ~]# chkconfig nfs on
[[email protected] ~]# chkconfig rpcbind on
5、nfs01服务端创建data目录和授权
[[email protected] ~]# mkdir /data
[[email protected] ~]# id nfsnobody
uid=65534(nfsnobody) gid=65534(nfsnobody) 组=65534(nfsnobody)
[[email protected] ~]# chown -R nfsnobody.nfsnobody /data
[[email protected] ~]# ls -ld /data/
drwxr-xr-x. 2 nfsnobody nfsnobody 4096 1月 4 23:55 /data/
6、nfs01服务端创建exports(服务器共享路径和权限)
[[email protected] ~]# vi /etc/exports
#shara /data by oldboy for bingbing at 20180104
/data 172.16.1.0/24(rw,sync)
#/data目录 172.16.1.0/24允许访问的IP段 (rw,sync) rw可以读和写,sync=直接写到磁盘上 async=大并发的时候使用(异步写入)
[[email protected] ~]# cat /etc/exports #查看是否配置成功
#shara /data by oldboy for bingbing at 20180104
/data 172.16.1.0/24(rw,sync)
7、重启服务
[[email protected] ~]# /etc/init.d/nfs reload =》配置文件配置完了需要重启服务
[[email protected] ~]# showmount -e 172.16.1.31 #重启服务之后自我检查看看是否成功
Export list for 172.16.1.31:
/data 172.16.1.0/24 #出现这个表示成功的服务端就配置好了
8、web01客户端启动rpc服务
[[email protected] /]# /etc/init.d/rpcbind start =》启动服务
Starting rpcbind: [ OK ]
[[email protected] /]# /etc/init.d/rpcbind status =》检查服务
rpcbind (pid 13542) is running..
9、客户端开启开机自启动
[[email protected] /]# chkconfig rpcbind on
[[email protected] /]# chkconfig --list |grep "rpcbind" =》查看启动状态
rpcbind 0:off 1:off 2:on 3:on 4:on 5:on 6:of
10、客户端检查是否可以挂载
[[email protected] /]# showmount -e 172.16.1.31
Export list for 172.16.1.31:
/data 172.16.1.0/24 =》表示成功的
[[email protected] /]# mount -t nfs 172.16.1.31:/data /mnt =》开始挂载
#-t是类型 nfs类型 nfs服务器IP地址 nfs服务器端的/data目录 挂载到 客户端的/mnt目录下
[[email protected] /]# df -h #查看挂载
Filesystem Size Used Avail Use% Mounted on
/dev/sda3 8.8G 1.9G 6.5G 23% /
tmpfs 364M 0 364M 0% /dev/shm
/dev/sda1 190M 66M 115M 37% /boot
172.16.1.31:/data 8.8G 1.8G 6.6G 21% /mnt #=》成功的
11、放到开机自启动配置文件中
[[email protected] ~]# echo "mount -t nfs 172.16.1.31:/data /mnt">>/etc/rc.local
[[email protected] ~]# tail -1 /etc/rc.local # =》检查
mount -t nfs 172.16.1.31:/data /mnt
原文地址:http://blog.51cto.com/ygtq666/2063025