首页 > 其他分享 >文件共享服务之NFS挂载实验

文件共享服务之NFS挂载实验

时间:2024-11-15 12:40:55浏览次数:1  
标签:web 文件共享 nfs NFS nginx test 挂载 root 231

任务需求

1.部署一台web服务器,提供静态网页的展示,该网站的html等静态资源远程存储在NFS服务器。
2.部署NFS服务器,创建共享文件夹(提供静态文件),发布该共享目录,提供给web服务器使用。

主机列表

# 外网地址                内网地址          主机名
192.168.122.207   172.16.1.207  web-test-209
192.168.122.231  172.16.1.231  nfs-test-231
192.168.122.241  172.16.1.241  rsync-test-241

架构图


开始实操


1.在nfs-test-231服务器部署nfs服务端

1.1.安装nfs及rpcbind服务

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

1.2.启动rpcbind服务

[root@nfs-test-231 ~]# systemctl start rpcbind

1.3.创建共享目录/nfs-web-share,以及创建共享的文件

[root@nfs-test-231 ~]# mkdir -p /nfs-web-share/
[root@nfs-test-231 ~]# echo '<meta charset=utf8> 这是一个网页' > /nfs-web-share/index.html
[root@nfs-test-231 ~]# ls /nfs-web-share/
index.html

1.4.修改目录权限

[root@nfs-test-231 ~]# chown -R nfsnobody.nfsnobody /nfs-web-share/index.html 
[root@nfs-test-231 ~]# ls -l /nfs-web-share/
总用量 4
-rw-r--r-- 1 nfsnobody nfsnobody 39 11月 15 09:55 index.html

1.5.查看该用户信息

[root@nfs-test-231 ~]# grep nfsnobody /etc/passwd
nfsnobody:x:65534:65534:Anonymous NFS User:/var/lib/nfs:/sbin/nologin

1.6.修改nfs配置文件,设置共享文件的规则

insecure 是客户端从大于1024的端口发送链接
all_squash 不管是root还是其他普通用户创建的文件的属主和属组都是nfsnobody
rw  允许读写
sync 数据同步到磁盘
[root@nfs-test-231 ~]# vim /etc/exports
[root@nfs-test-231 ~]# cat /etc/exports
/nfs-web-share  172.16.1.0/24(all_squash,insecure,rw,sync)

1.7.重新加载nfs服务,查看rpcbind进程,是否出现了111端口

[root@nfs-test-231 ~]# systemctl restart nfs
[root@nfs-test-231 ~]# netstat -tnlp|grep rpc
tcp        0      0 0.0.0.0:111             0.0.0.0:*               LISTEN      11060/rpcbind       
tcp        0      0 0.0.0.0:20048           0.0.0.0:*               LISTEN      11243/rpc.mountd    
tcp        0      0 0.0.0.0:44823           0.0.0.0:*               LISTEN      11220/rpc.statd     
tcp6       0      0 :::111                  :::*                    LISTEN      11060/rpcbind       
tcp6       0      0 :::20048                :::*                    LISTEN      11243/rpc.mountd    
tcp6       0      0 :::46427                :::*                    LISTEN      11220/rpc.statd     
     

1.8.查看nfs服务端共享情况

[root@nfs-test-231 ~]# showmount -e
Export list for nfs-test-231:
/nfs-web-share 172.16.1.0/24

1.9.查看nfs服务端远程共享的所有参数

是系统自动生成的,以及我们配置文件里定义的,都是默认的不需要了解太多

cat /var/lib/nfs/etab
/nfs-web-share  172.16.1.0/24(rw,sync,wdelay,hide,nocrossmnt,insecure,root_squash,all_squash,no_subtree_check,secure_locks,acl,no_pnfs,anonuid=65534,anongid=65534,sec=sys,rw,insecure,root_squash,all_squash)
[root@nfs-test-231 ~]# 

1.10.把nfs服务端本地当做一个客户端,本地挂载该共享目录访问试试

挂载后,的确访问到了该共享目录的数据。

[root@nfs-test-231 ~]# mount -t nfs 172.16.1.231:/nfs-web-share /mnt
[root@nfs-test-231 ~]# ls /mnt
index.html
[root@nfs-test-231 ~]# cat /mnt/index.html 
<meta charset=utf8> 这是一个网页

1.11.取消挂载,也就看不到数据了。

[root@nfs-test-231 ~]# umount /mnt
[root@nfs-test-231 ~]# cat /mnt/index.html 
cat: /mnt/index.html: 没有那个文件或目录
[root@nfs-test-231 ~]# 

至此,nfs服务端就搞定了
注意:

/etc/exports文件的语法不要写错,细心
修改/etc/exports文件后,只需systemctl reload nfs或是exportfs -r重新加载配置,无需重启

2.在web-test-207服务器部署nfs客户端

2.1.安装nfs及rpcbind服务

[root@web-test-207 ~]# yum install nfs-utils rpcbind -y

2.2.确保rpc服务正常

[root@web-test-207 ~]# systemctl start rpcbind
[root@web-test-207 ~]# systemctl status rpcbind
● rpcbind.service - RPC bind service
   Loaded: loaded (/usr/lib/systemd/system/rpcbind.service; enabled; vendor preset: enabled)
   Active: active (running) since 五 2024-11-15 10:50:35 CST; 2s ago
  Process: 1904 ExecStart=/sbin/rpcbind -w $RPCBIND_ARGS (code=exited, status=0/SUCCESS)
 Main PID: 1905 (rpcbind)
   CGroup: /system.slice/rpcbind.service
           └─1905 /sbin/rpcbind -w

11月 15 10:50:35 web-test-207 systemd[1]: Starting RPC bind service...
11月 15 10:50:35 web-test-207 systemd[1]: Started RPC bind service.
[root@web-test-207 ~]# 

2.3.远程查看共享文件信息

[root@web-test-207 ~]#  showmount -e 172.16.1.231
Export list for 172.16.1.231:
/nfs-web-share 172.16.1.0/24

2.4.进行挂载测试

[root@web-test-207 ~]# mount -t  nfs 172.16.1.231:/nfs-web-share/ /mnt
[root@web-test-207 ~]# mount -l |grep mnt
172.16.1.231:/nfs-web-share on /mnt type nfs4 (rw,relatime,vers=4.1,rsize=262144,wsize=262144,namlen=255,hard,proto=tcp,timeo=600,retrans=2,sec=sys,clientaddr=172.16.1.207,local_lock=none,addr=172.16.1.231)
[root@web-test-207 ~]# 

2.5.进入共享文件夹,读写操作

[root@web-test-207 ~]# cd /mnt
[root@web-test-207 mnt]# ll
总用量 4
-rw-r--r-- 1 nfsnobody nfsnobody 51 11月 15 10:56 index.html
[root@web-test-207 mnt]# cat index.html 
<meta charset=utf8> 这是一个网页
[root@web-test-207 mnt]# echo 'hello world' >> index.html 
[root@web-test-207 mnt]# cat index.html 
<meta charset=utf8> 这是一个网页
hello world
[root@web-test-207 mnt]# 

切换到nfs-test-231机器查看目录和文件

[root@nfs-test-231 ~]# cd /nfs-web-share/
[root@nfs-test-231 nfs-web-share]# ll
总用量 4
-rw-r--r-- 1 nfsnobody nfsnobody 51 11月 15 10:56 index.html
[root@nfs-test-231 nfs-web-share]# cat index.html 
<meta charset=utf8> 这是一个网页
hello world

3.在web-test-205部署nginx网站服务

3.1.安装nginx软件

[root@web-test-207 ~]# yum install -y nginx

3.2.查看nginx网页目录的默认文件

[root@web-test-207 ~]# ls /usr/share/nginx/html/
404.html  50x.html  index.html  nginx-logo.png  poweredby.png

3.3.挂载nfs共享文件夹到nginx的网页目录,让nginx可以读取到nfs的共享数据

执行mount挂载后,文件夹的内容会被隐藏,显示nfs共享的数据。

[root@web-test-207 ~]# mount -t nfs 172.16.1.231:/nfs-web-share /usr/share/nginx/html/
[root@web-test-207 ~]# mount -l | grep nfs
172.16.1.231:/nfs-web-share on /usr/share/nginx/html type nfs4 (rw,relatime,vers=4.1,rsize=262144,wsize=262144,namlen=255,hard,proto=tcp,timeo=600,retrans=2,sec=sys,clientaddr=172.16.1.207,local_lock=none,addr=172.16.1.231)

[root@web-test-207 ~]# ls /usr/share/nginx/html/
index.html

3.4.启动nginx,查看网页

[root@web-test-207 ~]# systemctl start nginx

3.5.查看nginx端口,进程

[root@web-test-207 ~]#  ps -ef|grep nginx
root      2485     1  0 12:12 ?        00:00:00 nginx: master process /usr/sbin/nginx
nginx     2486  2485  0 12:12 ?        00:00:00 nginx: worker process
nginx     2487  2485  0 12:12 ?        00:00:00 nginx: worker process
root      2572  1692  0 12:29 pts/0    00:00:00 grep --color=auto nginx
[root@web-test-207 ~]# netstat -tnlp|grep nginx
tcp        0      0 0.0.0.0:80              0.0.0.0:*               LISTEN      2485/nginx: master  
tcp6       0      0 :::80                   :::*                    LISTEN      2485/nginx: master  

3.6.用浏览器访问该机器的ip:80端口


4.更新网页内容

我们客户端的nginx页面,是来自于nfs服务端的

4.1.修改nfs服务端文件

[root@nfs-test-231 ~]# echo '<h1>其实我来自nfs服务端</h1>' >> /nfs-web-share/index.html 
[root@nfs-test-231 ~]# cat /nfs-web-share/index.html 
<meta charset=utf8> 这是一个网页
hello world
<h1>其实我来自nfs服务端</h1>
[root@nfs-test-231 ~]# 

4.2.再次访问客户端的nginx网页

标签:web,文件共享,nfs,NFS,nginx,test,挂载,root,231
From: https://www.cnblogs.com/funlyp/p/18546498

相关文章

  • 磁盘扩容/挂载操作
    1、扩容操作通过需求将指定磁盘大小扩容至指定大小例如:目前机器磁盘的数据盘:100G扩容至200G这里有两个方式方式一:如果当前是新盘,空间尚未占用可以使用这个笨方法:备份原有已经挂载的盘,然后卸载这个盘重新挂载(这个方式有点笨,且不实用就不写出来了)方式二:操作云厂商机器进行扩......
  • 挂载exFAT格式的移动硬盘
    在ubuntu下使用以下命令挂载移动硬盘sudomount/dev/sdb1/mnt在拷贝数据到/mnt下时,会提示没有权限,尝试修改挂载权限:sudomount-oremount,rw/mnt发现依旧提示没有权限,而且使用chown命令更改文件或目录的所有者时遇到"Operationnotpermitted"错误。通过df-T......
  • Linux 磁盘、分区、文件系统、挂载
    1、磁盘Linux所有设备都被抽象成为一个文件,保存在/dev目录下。设备名称一般为hd[a-z]或sd[a-z]。如果电脑中有多硬盘,则设备名依次为sda、adb、sdc...以此类推IDE设备的名称为hd[a-z]。SATA、SCSI、SAS、USB等设备的名称称为sd[a-z]。 2、分区在Linux中,使用备名称+分区号......
  • HarmonyOS Next移动办公的多设备文件共享:WLAN P2P与蓝牙串行通信的综合应用
    本文旨在深入探讨华为鸿蒙HarmonyOSNext系统(截止目前API12)的技术细节,基于实际开发实践进行总结。主要作为技术分享与交流载体,难免错漏,欢迎各位同仁提出宝贵意见和问题,以便共同进步。本文为原创内容,任何形式的转载必须注明出处及原作者。一、场景描述在现代移动办公环境中,高效......
  • nfs服务器之间实现目录共享12
    title:nfs服务器之间实现目录共享date:2022-11-0522:41:54tags:[nfs,文件共享]categories:linux在使用airflow的时候,scheduler和worker之间的dag文件需要保持一致,而airflow没有解决这个问题,所以,需要我们自己解决dag文件的同步问题。第一个解决方案就是云服务商提供的nas......
  • nfs服务器之间实现目录共享13
    title:nfs服务器之间实现目录共享date:2022-11-0522:41:54tags:[nfs,文件共享]categories:linux在使用airflow的时候,scheduler和worker之间的dag文件需要保持一致,而airflow没有解决这个问题,所以,需要我们自己解决dag文件的同步问题。第一个解决方案就是云服务商提供的nas......
  • nfs服务器之间实现目录共享13134
    title:nfs服务器之间实现目录共享date:2022-11-0522:41:54tags:[nfs,文件共享]categories:linux在使用airflow的时候,scheduler和worker之间的dag文件需要保持一致,而airflow没有解决这个问题,所以,需要我们自己解决dag文件的同步问题。第一个解决方案就是云服务商提供的nas......
  • nfs服务器之间实现目录共享1234
    title:nfs服务器之间实现目录共享date:2022-11-0522:41:54tags:[nfs,文件共享]categories:linux在使用airflow的时候,scheduler和worker之间的dag文件需要保持一致,而airflow没有解决这个问题,所以,需要我们自己解决dag文件的同步问题。第一个解决方案就是云服务商提供的nas......
  • nfs服务器之间实现目录共享11
    title:nfs服务器之间实现目录共享date:2022-11-0522:41:54tags:[nfs,文件共享]categories:linux在使用airflow的时候,scheduler和worker之间的dag文件需要保持一致,而airflow没有解决这个问题,所以,需要我们自己解决dag文件的同步问题。第一个解决方案就是云服务商提供的nas......
  • nfs服务器之间实现目录共享
    title:nfs服务器之间实现目录共享date:2022-11-0522:41:54tags:[nfs,文件共享]categories:linux在使用airflow的时候,scheduler和worker之间的dag文件需要保持一致,而airflow没有解决这个问题,所以,需要我们自己解决dag文件的同步问题。第一个解决方案就是云服务商提供的nas......