首页 > 代码库 > nfs安装

nfs安装

环境

LINUX

系统

CentOS release 6.8 (Final)

内核版本

2.6.32-642.el6.x86_64

epel

wget -O /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-6.repo

selinux

Disabled

ip  tables

Firewall is not running.

nfs服务端

1、是否安装nfs-utils rpcbind

[root@backup ~]# rpm -qa nfs-utils rpcbind
nfs-utils-1.2.3-70.el6_8.1.x86_64
rpcbind-0.2.0-12.el6.x86_64

如果没有安装则用下面命令安装

[root@oldboy ~]# yum install -y nfs-utils rpcbind

2、开启服务

注意开启的先后顺序!!!

[root@oldboy ~]# /etc/init.d/rpcbind start
Starting rpcbind:                                          [  OK  ]
[root@oldboy ~]#
[root@oldboy ~]# /etc/init.d/nfs start
Starting NFS services:                                     [  OK  ]
Starting NFS quotas:                                       [  OK  ]
Starting NFS mountd:                                       [ OK  ]
Starting NFS daemon:                                       [  OK  ]
Starting RPC idmapd:                                       [  OK  ]
[root@oldboy ~]#

3、加入开机自启动

[root@oldboy ~]#echo "/etc/init.d/rpcbindstart" >>/etc/rc.local
[root@oldboy ~]#echo "/etc/init.d/nfsstart" >>/etc/rc.local  
[root@oldboy ~]# tail -2 /etc/rc.local
/etc/init.d/rpcbind start
/etc/init.d/nfs start
[root@oldboy ~]#

4、创建共享目录/data

[root@nfs01 ~]# mkdir /data -p
[root@nfs01 ~]# id nfsnobody
uid=65534(nfsnobody) gid=65534(nfsnobody)groups=65534(nfsnobody)
[root@nfs01 ~]# ls -ld /data/
drwxr-xr-x. 2 root root 4096 Sep 23 17:48 /data/

5、授予/data 属主属组nfsnobody

[root@nfs01 ~]# chown -R nfsnobody.nfsnobody /data/
[root@nfs01 ~]# ls -ld /data/
drwxr-xr-x. 2 nfsnobody nfsnobody 4096 Sep 23 17:48/data/

6、配置/etc/exports

[root@nfs01 ~]# cat /etc/exports
#share /data by syaving for oldboy stu at 20160925
/data 172.16.1.0/24(rw,sync)

 

rw           读写权限
ro           只读权限
async          异步,特点:1)速度快,2)有丢失数据的风险
sync          同步,特点:1)速度慢,2)数据安全
all_squash       将权限都压制成匿名用户
anonuid,anongid    指定用户UID和GID

7、重启nfs

[root@nfs01 ~]# /etc/init.d/nfs reload   
=== exportfs -rv

 

8、验证是否正确

[root@nfs01 ~]# showmount -e 172.16.1.31
Export list for 172.16.1.31:
/data 172.16.1.0/24
[root@nfs01 ~]#

nfs客户端

1、是否安装nfs-utils rpcbind

[root@backup ~]# rpm -qa nfs-utils rpcbind
nfs-utils-1.2.3-70.el6_8.1.x86_64
rpcbind-0.2.0-12.el6.x86_64

如果没有安装则用下面命令安装

[root@oldboy ~]# yum install -y nfs-utils rpcbind

2、开启服务

注意只开启rpcbind即可!!!

[root@oldboy ~]# /etc/init.d/rpcbind start
Starting rpcbind:                                         [  OK  ]
[root@oldboy ~]#

3、客户端验证

[root@web01 ~]# showmount -e 172.16.1.31
Export list for 172.16.1.31:
/data 172.16.1.0/24

4、挂载

[root@web01 ~]# mount -t nfs 172.16.1.31:/data/mnt #=注意在其他机器上使用脚本后,注意此ip需要变更
[root@web01 ~]# df -h
Filesystem        Size  Used  Avail Use% Mounted on
/dev/sda2         19G   1.5G  17G  9%  /
tmpfs           931M  0   931M  0% /dev/shm
/dev/sda1         190M 38M  142M  22% /boot
172.16.1.31:/data  19G  1.5G 7G  9% /mnt
[root@web01 ~]#

5、加入开机自挂载

[root@web01 ~]#echo "mount -t nfs172.16.1.31:/data /mnt" >> /etc/rc.local

 

6、验证服务是否可行

客户端:

[root@web01 ~]# cd /mnt/
[root@web01 mnt]# ls
[root@web01 mnt]# mkdir 123
[root@web01 mnt]# ls
123

服务端:

[root@nfs01 ~]# ls /data/
123


本文出自 “House of God” 博客,请务必保留此出处http://syaving.blog.51cto.com/5614476/1862995

nfs安装