一、环境介绍
服务器:centos 192.168.27.10
客户端:centos 192.168.27.11
共享目录同时共享给整个192.168.27.0/24网段
二、软件安装
nfs服务端和客户端都需要安装以下软件:
centos 5 :
yum -y install nfs-utils portmap
centos 6 centos7:
(在CentOS 6之后,portmap服务由rpcbind负责) :
yum -y install nfs-utils rpcbind
三、服务器端配置
1、创建共享目录:
[root@centos2 /]# mkdir /usr/local/test
2、NFS文件配置:
[root@centos2 /]# vi /etc/exports
#增加一行:
/usr/local/test/ 192.168.27.0/24(rw,no_root_squash,no_all_squash,sync)
:x保存退出;
使配置生效:
[root@centos2 /]# exportfs -r
配置文件说明:
/usr/local/test/ 为共享的目录,使用绝对路径。
192.168.27.0/24(rw,no_root_squash,no_all_squash,sync) 为客户端的地址及权限,地址可以是一个网段,一个IP地址或者是一个域名,域名支持通配符,如:*.youxia.com,地址与权限中间没有空格,权限说明:
rw:read-write,可读写;
ro:read-only,只读;
sync:文件同时写入硬盘和内存;
async:文件暂存于内存,而不是直接写入内存;
no_root_squash:NFS客户端连接服务端时如果使用的是root的话,那么对服务端分享的目录来说,也拥有root权限。显然开启这项是不安全的。
root_squash:NFS客户端连接服务端时如果使用的是root的话,那么对服务端分享的目录来说,拥有匿名用户权限,通常他将使用nobody或nfsnobody身份;
all_squash:不论NFS客户端连接服务端时使用什么用户,对服务端分享的目录来说都是拥有匿名用户权限;
anonuid:匿名用户的UID值,通常是nobody或nfsnobody,可以在此处自行设定;
anongid:匿名用户的GID值。
3、启动nfs服务:
centos 7
systemctl start rpcbind
systemctl start nfs
centos6
[root@centos2 /]# service rpcbind start
[root@centos2 /]# service nfs start
centos 5
[root@centos2 /]# service portmap start
[root@centos2 /]# service nfs start
4、设置开机自启动
systemctl enable rpcbind
systemctl enable nfs-server.service
四、客户端挂载
1、启动nfs服务
centos 7
systemctl start rpcbind
systemctl start nfs
centos6
[root@centos2 /]# service rpcbind start
[root@centos2 /]# service nfs start
2、创建需要挂载的目录
[root@localhost ~]# mkdir /usr/local/test
3、测试挂载信息
[root@localhost ~]# showmount -e 192.168.27.10
Export list for 192.168.27.10:
/usr/local/test 192.168.27.10
[root@localhost ~]#
如果显示:rpc mount export: RPC: Unable to receive; errno = No route to host,则需要在服务端关闭防火墙或者打开几个端口(详见后文第六部分)。
4、挂载
[root@localhost ~]# mount -t nfs 192.168.27.10:/usr/local/test /usr/local/test
[root@localhost ~]# mount /dev/mapper/VolGroup-lv_root on / type ext4 (rw) proc on /proc type proc (rw) sysfs on /sys type sysfs (rw) devpts on /dev/pts type devpts (rw,gid=5,mode=620) tmpfs on /dev/shm type tmpfs (rw) /dev/sda1 on /boot type ext4 (rw) none on /proc/sys/fs/binfmt_misc type binfmt_misc (rw) sunrpc on /var/lib/nfs/rpc_pipefs type rpc_pipefs (rw) nfsd on /proc/fs/nfsd type nfsd (rw) 192.168.27.10:/usr/local/test on /usr/local/test type nfs (rw,vers=4,addr=192.168.1.27.10,clientaddr=192.168.27.10) [root@localhost ~]#
如果出现192开头的信息,就说明则挂载成功!
5、设置开机自动挂载
设置软件自启动
centos 7
systemctl enable rpcbind
systemctl enable nfs-server.service
centos 6
chkconfig rpcbind on
chkconfig nfs on
设置自动挂载
编辑以下文件:
vi /etc/fstab
在最后添加:
192.168.27.10:/usr/local/test /usr/local/test nfs defaults 0 0
6、测试:
客户端生成一个文件:
[root@centos2 /]# cd /usr/local/test/
[root@centos2 test]# echo "hello nfs test">>test
[root@centos2 test]# ll
total 4
-rw-r--r-- 1 root root 15 Apr 9 13:24 test
[root@centos2 test]#
服务端检查:
[root@centos2 /]# cd /usr/local/test/
[root@centos2 test]# ll
total 4
-rw-r--r-- 1 root root 15 Apr 9 13:24 test
[root@centos2 test]#
挂载成功!
五、解除挂载:
[root@localhost ~]# umount /usr/local/test
[root@localhost ~]# mount /dev/mapper/VolGroup-lv_root on / type ext4 (rw) proc on /proc type proc (rw) sysfs on /sys type sysfs (rw) devpts on /dev/pts type devpts (rw,gid=5,mode=620) tmpfs on /dev/shm type tmpfs (rw) /dev/sda1 on /boot type ext4 (rw) none on /proc/sys/fs/binfmt_misc type binfmt_misc (rw) sunrpc on /var/lib/nfs/rpc_pipefs type rpc_pipefs (rw) nfsd on /proc/fs/nfsd type nfsd (rw) [root@localhost ~]#
如果遇到:umount.nfs: /usr/local/test: device is busy
可以用命令:
[root@localhost /]# fuser -m -v /usr/local/test
用户 进程号 权限 命令 /usr/local/test/: root 2798 ..c.. bash root 2996 ..c.. su [root@localhost /]# kill -9 2798 [root@localhost /]# kill -9 2996 [root@localhost /]# umount /usr/local/test [root@localhost /]#
六、服务器端防火墙设置
0、关闭所有防火墙
为了保证mpi运行成功,且尽可能降低通讯延迟和系统开销,请关闭防火墙以达到最高的效率。
关闭firewalld
systemctl stop firewalldsystemctl disable firewalld
关闭selinux
1.暂时关闭selinux
setenforce 0
2.永久关闭selinux
编辑selinux的配置文件,把SELINUX设置成disabled,然后重启生效
[root@linuxidc share]#vi /etc/sysconfig/selinux
# This file controls the state of SELinux on the system.
# SELINUX= can take one of these three values:
# enforcing - SELinux security policy is enforced.
# permissive - SELinux prints warnings instead of enforcing.
# disabled - No SELinux policy is loaded.
SELINUX=disabled
# SELINUXTYPE= can take one of three two values:
# targeted - Targeted processes are protected,
# minimum - Modification of targeted policy. Only selected processes are protected.
# mls - Multi Level Security protection.
SELINUXTYPE=targeted
开启防墙的配置:
1、修改/etc/service,添加以下内容(端口号必须在1024以下,且未被占用)
# Local services
mountd 1011/tcp #rpc.mountd
mountd 1011/udp #rpc.mountd
rquotad 1012/tcp #rpc.rquotad
rquotad 1012/udp #rpc.rquotad
2、重起Linux NFS服务
service nfs restart
3、此时rpc相关端口已经被固定,可以为Linux NFS添加防火墙规则
#portmap
/sbin/iptables -A INPUT -s 192.168.1.0/254 -p tcp –dport 111 -j ACCEPT
/sbin/iptables -A INPUT -s 192.168.1.0/254 -p udp –dport 111 -j ACCEPT
#nfsd
/sbin/iptables -A INPUT -s 192.168.1.0/254 -p tcp –dport 2049 -j ACCEPT
/sbin/iptables -A INPUT -s 192.168.1.0/254 -p udp –dport 2049 -j ACCEPT
#mountd
/sbin/iptables -A INPUT -s 192.168.1.0/254 -p tcp –dport 1011 -j ACCEPT
/sbin/iptables -A INPUT -s 192.168.1.0/254 -p udp –dport 1011 -j ACCEPT
#rquotad
/sbin/iptables -A INPUT -s 192.168.1.0/254 -p tcp –dport 1012 -j ACCEPT
/sbin/iptables -A INPUT -s 192.168.1.0/254 -p udp –dport 1012 -j ACCEPT
#rpc.statd
/sbin/iptables -A INPUT -s 192.168.1.0/254 -p tcp –dport 32768 -j ACCEPT
/sbin/iptables -A INPUT -s 192.168.1.0/254 -p udp –dport 32768 -j ACCEPT
—TCP方法成功——————————————-
-A INPUT -m state –state NEW -m tcp -p tcp –dport 111 -j ACCEPT
-A INPUT -m state –state NEW -m tcp -p tcp –dport 2049 -j ACCEPT
-A INPUT -m state –state NEW -m tcp -p tcp –dport 1011 -j ACCEPT
-A INPUT -m state –state NEW -m tcp -p tcp –dport 1012 -j ACCEPT
-A INPUT -m state –state NEW -m tcp -p tcp –dport 32768 -j ACCEPT
客户端在挂载的时候遇到的一个问题如下,可能是网络不太稳定,NFS默认是用UDP协议,换成TCP协议即可:
mount -t nfs 192.168.1.225:/usr/local/test /usr/local/test -o proto=tcp -o nolock
固定NFS启动端口便于iptables设置
NFS启动时会随机启动多个端口并向RPC注册,这样如果使用iptables对NFS端口进行限制就会有点麻烦,可以更改配置文件固定NFS服务相关端口。
先上张图看看NFS启动后的端口:
分配端口,编辑配置文件:
1
|
vi /etc/sysconfig/nfs |
添加:
1
2
3
4
5
6
|
#http://www.haiyun.me RQUOTAD_PORT=30001 LOCKD_TCPPORT=30002 LOCKD_UDPPORT=30002 MOUNTD_PORT=30003 STATD_PORT=30004 |
重启portmap和nfs:
1
2
|
/etc/init .d /portmap restart /etc/init .d /nfs restart |
现在看看启动的端口:
1
|
rpcinfo -p localhost |
1
2
3
4
5
6
|
iptables -A INPUT -s 192.168.1.1 -p tcp --dport 111 -j ACCEPT iptables -A INPUT -s 192.168.1.1 -p udp --dport 111 -j ACCEPT iptables -A INPUT -s 192.168.1.1 -p tcp --dport 2049 -j ACCEPT iptables -A INPUT -s 192.168.1.1 -p udp --dport 2049 -j ACCEPT iptables -A INPUT -s 192.168.1.1 -p tcp --dport 30001:30004 -j ACCEPT iptables -A INPUT -s 192.168.1.1 -p udp --dport 30001:30004 -j ACCEPT |
0 条评论