NFS共享存储服务

NFS (Network File System) 网络文件系统

依赖于RPC (远端过程调用)
●需安装nfs-utils、rpcbind软件包
●系统服务: nfs、 rpcbind
●共享配置文件: /etc/exports

配置NFS共享储存
一、服务器端设置NFS共享目录(假定服务器ip:20.0.0.11)

[root@localhost other]# yum -y install nfs-utils
[root@localhost other]# yum -y install rpcbind
[root@localhost other]# mkdir /opt/wwwroot/
[root@localhost other]# vi /etc/exports
/opt/wwwroot 20.0.0.0/24(rw,sync,no_root_squash)
/opt/ftp/pub 20.0.0.12(ro) 20.0.0.13(rw)

在这里插入图片描述

[root@localhost other]# systemctl start nfs
[root@localhost other]# systemctl start rpcbind
[root@localhost other]# systemctl enable rpcbind
[root@localhost other]# systemctl enable nfs
[root@localhost other]# showmount -e

在这里插入图片描述
去客户端挂载共享目录(假定客户机ip:20.0.0.12)

[root@localhost ~]# yum -y install rpcbind ##访问需要安装RPC工具
[root@localhost ~]# yum -y install showmount ##安装showmount工具用于查看共享目录
[root@localhost ~]# showmount -e 20.0.0.11

在这里插入图片描述

[root@localhost ~]# mkdir /var/www

设置临时挂载
[root@localhost ~]# mount 20.0.0.11:/opt/wwwroot /var/www/(临时挂载)
[root@localhost ~]# tail -1 /etc/mtab

在这里插入图片描述
写入数据进行测试

(1)服务器端写入数据

[root@localhost other]# cd /opt/wwwroot
[root@localhost wwwroot]# ll
total 0
[root@localhost wwwroot]# touch 1.txt
[root@localhost wwwroot]# echo hahaha > 1.txt
[root@localhost wwwroot]# cat 1.txt
hahaha
客户端查看(测试无误,能看到完整数据)
[root@localhost ~]# cd //var/www
[root@localhost www]# ll
total 4
-rw-r–r-- 1 root root 16 Aug 2 16:13 1.txt
[root@localhost www]# cat 1.txt
hahaha
(2)客户端写入数据
[root@localhost www]# cd /var/www
[root@localhost www]# touch 2.txt
[root@localhost www]# echo 857857 > 2.txt
[root@localhost www]# cat 2.txt
857857
服务器端查看(数据无误,测试成功)
[root@localhost wwwroot]# cd /opt/wwwroot
[root@localhost wwwroot]# lltotal 8
-rw-r–r--. 1 root root 16 Aug 2 16:13 1.txt
-rw-r–r--. 1 root root 11 Aug 2 16:16 2.txt

[root@localhost wwwroot]# cat 2.txt
857857
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值