Bootstrap

Linux下安装nfs

NFS Server安装nfs-server
server端:https://www.cndba.cn/hbhe0316/article/5009

https://www.cndba.cn/hbhe0316/article/5009
https://www.cndba.cn/hbhe0316/article/5009
https://www.cndba.cn/hbhe0316/article/5009
[root@ftpserver ~]# yum install -y nfs-utils rpcbind

client端

https://www.cndba.cn/hbhe0316/article/5009
https://www.cndba.cn/hbhe0316/article/5009
[root@ansible yum.repos.d]# yum install -y nfs-utils

server端:https://www.cndba.cn/hbhe0316/article/5009

[root@ftpserver ~]# mkdir -p /data/share
[root@ftpserver ~]# chmod 666 /data/share

然后,修改 NFS 配置文件 /etc/exports

[root@ftpserver ~]# cat /etc/exports
/data/share 192.168.56.0/24(rw,sync,insecure,no_subtree_check,no_root_squash)

说明一下,这里配置后边有很多参数,每个参数有不同的含义,具体可以参考下边。此处,我配置了将 /data/share 文件目录设置为允许 IP 为该 192.168.56.0/24 区间的客户端挂载,当然,如果客户端 IP 不在该区间也想要挂载的话,可以设置 IP 区间更大或者设置为 即允许所有客户端挂载,例如:/home (ro,sync,insecure,no_root_squash) 设置 /home 目录允许所有客户端只读挂载。

[root@ftpserver ~]# service rpcbind restart
Redirecting to /bin/systemctl restart rpcbind.service
[root@ftpserver ~]# systemctl restart nfs.service

然后,在客户端创建挂在目录 /sharehttps://www.cndba.cn/hbhe0316/article/5009https://www.cndba.cn/hbhe0316/article/5009https://www.cndba.cn/hbhe0316/article/5009

[root@ansible yum.repos.d]# mkdir /share
[root@ansible yum.repos.d]# mount 192.168.56.199:/data/share /share
[root@ansible yum.repos.d]# df -h
Filesystem                  Size  Used Avail Use% Mounted on
devtmpfs                    3.9G     0  3.9G   0% /dev
tmpfs                       3.9G     0  3.9G   0% /dev/shm
tmpfs                       3.9G  8.7M  3.9G   1% /run
tmpfs                       3.9G     0  3.9G   0% /sys/fs/cgroup
/dev/mapper/centos-root      91G  2.0G   90G   3% /
/dev/sda1                  1014M  171M  844M  17% /boot
tmpfs                       799M     0  799M   0% /run/user/0
192.168.56.199:/data/share   95G   62G   34G  65% /share

版权声明:本文为博主原创文章,未经博主允许不得转载。

LINUX

;