翼度科技»论坛 云主机 LINUX 查看内容

NFS练习题

3

主题

3

帖子

9

积分

新手上路

Rank: 1

积分
9
一、任务背景

题目:
  1. 1.开放/nfs/share目录,提供给任意用户只读查询
  2. 2.开放/nfs/upload目录,提供给172.16.1.0/24网段内的机器上传数据,并且要求限制上传数据映射为nfs-upload用户,uid和gid均为200
  3. 3.开放/home/chaoge目录仅共享给172.16.1.41这台机器,且只有chaoge01用户可以完全访问该目录
  4. 4.添加10G硬盘,给nfs服务端/nfs-nginx-data目录使用,且仅提供给主机名为web-7的机器使用,并且要求限制上传数据映射为www用户,uid、gid均为11211;并且提供html、png资源给nginx用;确保nginx可正确访问该静态数据。
复制代码
主机列表:
  1. # 外网地址                内网地址          主机名
  2. 192.168.122.7       172.16.1.7        web-7
  3. 192.168.122.31    172.16.1.31     nfs-31
  4. 192.168.122.41    172.16.1.41    rsync-41
  5. 192.168.122.110  172.16.1.110  client-110
复制代码
二、实验记录

1.开放/nfs/share目录,提供给任意用户只读查询

1.1.在nfs-31机器上安装和启动nfs-utils和rpcbind

1.1.1.安装nfs-utils和rpcbind
  1. [root@nfs-31 ~]# yum install -y nfs-utils rpcbind
  2. 已加载插件:fastestmirror
  3. Determining fastest mirrors
  4. base                                                                                                         | 3.6 kB  00:00:00     
  5. epel                                                                                                         | 5.4 kB  00:00:00     
  6. extras                                                                                                       | 2.9 kB  00:00:00     
  7. updates                                                                                                      | 2.9 kB  00:00:00     
  8. 软件包 1:nfs-utils-1.3.0-0.68.el7.2.aarch64 已安装并且是最新版本
  9. 软件包 rpcbind-0.2.0-49.el7.aarch64 已安装并且是最新版本
  10. 无须任何处理
复制代码
1.1.2.启动rpcbind服务
  1. [root@nfs-31 ~]# systemctl start rpcbind
  2. [root@nfs-31 ~]# netstat -tunlp |grep rpc
  3. tcp        0      0 0.0.0.0:111             0.0.0.0:*               LISTEN      2806/rpcbind        
  4. tcp6       0      0 :::111                  :::*                    LISTEN      2806/rpcbind        
  5. udp        0      0 0.0.0.0:111             0.0.0.0:*                           2806/rpcbind        
  6. udp        0      0 0.0.0.0:861             0.0.0.0:*                           2806/rpcbind        
  7. udp6       0      0 :::111                  :::*                                2806/rpcbind        
  8. udp6       0      0 :::861                  :::*                                2806/rpcbind     
复制代码
1.1.3修该nfs配置文件/etc/exports
  1. [root@nfs-31 share]# vim /etc/exports
  2. [root@nfs-31 share]# cat /etc/exports
  3. /nfs/share *(ro)
复制代码
1.1.4 建立目录/nfs/share,并在此目录中创建一个文件用于测试。
  1. [root@nfs-31 ~]# mkdir -p /nfs/share
  2. [root@nfs-31 ~]# ll -d /nfs/share/
  3. drwxr-xr-x 2 root root 6 11月 26 09:40 /nfs/share/
复制代码
  1. [root@nfs-31 ~]#  cd /nfs/share/
  2. [root@nfs-31 share]# echo '这是一个测试文件,你只能读' > testro.txt
  3. [root@nfs-31 share]# ll
  4. 总用量 4
  5. -rw-r--r-- 1 root root 40 11月 26 09:42 testro.txt
复制代码
1.1.5 启动nfs服务
  1. [root@nfs-31 share]# systemctl start nfs
  2. [root@nfs-31 share]# systemctl status nfs
  3. ● nfs-server.service - NFS server and services
  4.    Loaded: loaded (/usr/lib/systemd/system/nfs-server.service; enabled; vendor preset: disabled)
  5.   Drop-In: /run/systemd/generator/nfs-server.service.d
  6.            └─order-with-mounts.conf
  7.    Active: active (exited) since 二 2024-11-26 10:09:36 CST; 3s ago
  8.   Process: 2681 ExecStopPost=/usr/sbin/exportfs -f (code=exited, status=0/SUCCESS)
  9.   Process: 2678 ExecStopPost=/usr/sbin/exportfs -au (code=exited, status=0/SUCCESS)
  10.   Process: 2677 ExecStop=/usr/sbin/rpc.nfsd 0 (code=exited, status=0/SUCCESS)
  11.   Process: 7932 ExecStartPost=/bin/sh -c if systemctl -q is-active gssproxy; then systemctl reload gssproxy ; fi (code=exited, status=0/SUCCESS)
  12.   Process: 7919 ExecStart=/usr/sbin/rpc.nfsd $RPCNFSDARGS (code=exited, status=0/SUCCESS)
  13.   Process: 7917 ExecStartPre=/usr/sbin/exportfs -r (code=exited, status=0/SUCCESS)
  14. Main PID: 7919 (code=exited, status=0/SUCCESS)
  15.    CGroup: /system.slice/nfs-server.service
  16. #将服务设置为开机自启
  17. [root@nfs-31 ~]# systemctl enable nfs
  18. [root@nfs-31 ~]# systemctl is-enabled nfs
  19. enabled
  20. [root@nfs-31 ~]# systemctl is-enabled rpcbind
  21. enabled
复制代码
1.2在client-110进行挂载测试

1.2.1 安装nfs-utils
  1. [root@client-110 ~]# yum install -y nfs-utils
  2. 已加载插件:fastestmirror
  3. Loading mirror speeds from cached hostfile
  4. ...
  5. ...
  6. 完毕!
复制代码
1.2.2 查询nfs服务器上开放的目录
  1. [root@client-110 ~]# showmount -e 172.16.1.31
  2. Export list for 172.16.1.31:
  3. /nfs/share *
复制代码
1.2.3 新建一个目录作为挂载点进行挂载
  1. [root@client-110 ~]# mkdir -p  /mnt/nfs/share
  2. [root@client-110 ~]# mount -t nfs
  3. anaconda-ks.cfg  .bash_logout     .bashrc          network_init.sh  .viminfo         
  4. .bash_history    .bash_profile    .cshrc           .tcshrc         
  5. [root@client-110 ~]# mount -t nfs 172.16.1.31:/nfs/share /mnt/nfs/share/
  6. [root@client-110 ~]# df -h | grep nfs
  7. 172.16.1.31:/nfs/share    17G  1.8G   16G   11% /mnt/nfs/share
复制代码
1.2.4 测试挂载是否是只读
  1. [root@client-110 ~]# cd /mnt/nfs/share/
  2. [root@client-110 share]# ll
  3. 总用量 4
  4. -rw-r--r-- 1 root root 40 11月 26 09:42 testro.txt
  5. [root@client-110 share]# cat testro.txt
  6. 这是一个测试文件,你只能读
  7. [root@client-110 share]# echo '我偏要写入'>> testro.txt
  8. bash: testro.txt: 只读文件系统
  9. [root@client-110 share]# touch 我偏要rw.txt
  10. touch: 无法创建"我偏要rw.txt": 只读文件系统
  11. [root@client-110 share]# mkdir test
  12. mkdir: 无法创建目录"test": 只读文件系统
  13. [root@client-110 share]#
复制代码
测试达到题目要求。
2.开放/nfs/upload目录,提供给172.16.1.0/24网段内的机器上传数据,并且要求限制上传数据映射为nfs-upload用户,uid和gid均为200

2.1.在nfs-31机器上配置和重载nfs

2.1.1 .新建nfs-upload用户,uid和gid均为200
  1. [root@nfs-31 share]# useradd nfs-upload -M -u 200 -g 200 -s /sbin/nologin
  2. useradd:“200”组不存在
  3. [root@nfs-31 share]# useradd nfs-upload -M -u 200  -s /sbin/nologin
  4. [root@nfs-31 share]# grep  200 /etc/passwd
  5. nfs-upload:x:200:1001::/home/nfs-upload:/sbin/nologin
  6. [root@nfs-31 share]# groupmod -g 200 nfs-upload
  7. [root@nfs-31 share]# grep  200 /etc/passwd
  8. nfs-upload:x:200:200::/home/nfs-upload:/sbin/nologin
复制代码
2.1.2 .修该nfs配置文件/etc/exports

开放/nfs/upload目录,提供给172.16.1.0/24网段内的机器上传数据,并且要求限制上传数据映射为nfs-upload用户
  1. [root@nfs-31 share]# vim /etc/exports
  2. [root@nfs-31 share]# cat /etc/exports
  3. /nfs/share *(ro)/nfs/upload 172.16.1.0/24(rw,sync,all_squash,anonuid=200,anongid=200)
复制代码
2.1.3.新建目录/nfs/upload,修改其属性。
  1. [root@nfs-31 share]# mkdir -p /nfs/upload
  2. [root@nfs-31 share]# ll -d  /nfs/upload/
  3. drwxr-xr-x 2 root root 6 11月 26 13:06 /nfs/upload/
  4. [root@nfs-31 ~]# chown -R nfs-upload:nfs-upload /nfs/upload
  5. [root@nfs-31 ~]# ll -d /nfs/upload/
  6. drwxr-xr-x 2 nfs-upload nfs-upload 6 11月 26 13:06 /nfs/upload/
复制代码
2.1.4.重载nfs服务,查看nfs开放情况
  1. [root@nfs-31 share]# systemctl reload nfs
  2. [root@nfs-31 share]# showmount -e 172.16.1.31
  3. Export list for 172.16.1.31:
  4. /nfs/share  *
  5. /nfs/upload 172.16.1.0/24
复制代码
2.2.在client-110进行挂载和测试

2.2.1.查询nfs服务器上开放的目录

[root@client-110 ~]# showmount -e 172.16.1.31
  1. Export list for 172.16.1.31:
  2. /nfs/share  *
  3. /nfs/upload 172.16.1.0/24
复制代码
2.2.2.新建一个目录作为挂载点进行挂载
  1. [root@client-110 ~]# mkdir -p /mnt/nfs/upload
  2. [root@client-110 ~]# ll -d /mnt/nfs/upload/
  3. drwxr-xr-x 2 root root 6 11月 26 15:03 /mnt/nfs/upload/
  4. [root@client-110 ~]# mount -t nfs 172.16.1.31:/nfs/upload /mnt/nfs/upload
  5. [root@client-110 ~]# df -h | grep nfs
  6. 172.16.1.31:/nfs/share    17G  1.8G   16G   11% /mnt/nfs/share
  7. 172.16.1.31:/nfs/upload   17G  1.8G   16G   11% /mnt/nfs/upload
复制代码
2.2.3.进入挂载点进行测试
  1. [root@client-110 upload]# echo '我上传文件试试'>> upload.txt
  2. [root@client-110 upload]# ll
  3. 总用量 4
  4. -rw-r--r-- 1 200 200 22 11月 26 15:26 upload.txt
复制代码
2.2.4.在nfs-31上进入开放目录查看上传的文件
  1. [root@nfs-31 ~]# ll /nfs/
  2. share/  upload/
  3. [root@nfs-31 ~]# ll /nfs/upload/
  4. 总用量 4
  5. -rw-r--r-- 1 nfs-upload nfs-upload 22 11月 26 15:26 upload.txt
  6. [root@nfs-31 ~]# cat /nfs/upload/upload.txt
  7. 我上传文件试试
复制代码
测试达到题目要求。
3.开放/home/chaoge目录仅共享给172.16.1.41这台机器,且只有chaoge01用户可以完全访问该目录

3.1 .在nfs-31机器上配置和重载nfs

3.1.1.新建chaoge01用户,指定用户主目录为/home/chaoge
  1. [root@nfs-31 ~]# useradd -d /home/chaoge chaoge01
  2. [root@nfs-31 ~]# grep chaoge01 /etc/passwd
  3. chaoge01:x:1001:1001::/home/chaoge:/bin/bash
  4. [root@nfs-31 ~]# ll -d /home/chaoge
  5. drwx------ 2 chaoge01 chaoge01 62 11月 26 16:05 /home/chaoge
复制代码
可以看到,chaoge01的uid和gid都为1001,且只有chaoge01用户可以完全访问该目录
3.1.2.修该nfs配置文件/etc/exports
  1. [root@nfs-31 ~]# vim /etc/exports
  2. [root@nfs-31 ~]# cat /etc/exports
  3. /nfs/share *(ro)
  4. /nfs/upload 172.16.1.0/24(rw,sync,all_squash,anonuid=200,anongid=200)
  5. /home/chaoge 172.16.1.41(rw,sync,all_squash,anonuid=1001,anongid=1001)
复制代码
3.1.3.重载nfs服务和查看开放情况
  1. [root@nfs-31 ~]# systemctl reload nfs
  2. [root@nfs-31 ~]# showmount -e 127.0.0.1
  3. Export list for 127.0.0.1:
  4. /nfs/share   *
  5. /nfs/upload  172.16.1.0/24
  6. /home/chaoge 172.16.1.41
复制代码
3.2.在rsync-41机器上进行挂载和测试

3.2.1.安装nfs-utils,并查看nfs-31上的开放情况
  1. [root@rsync-41 ~]# yum install -y nfs-utils
复制代码
  1. [root@rsync-41 ~]# showmount -e 172.16.1.31
  2. Export list for 172.16.1.31:
  3. /nfs/share   *
  4. /nfs/upload  172.16.1.0/24
  5. /home/chaoge 172.16.1.41
复制代码
3.2.2.新建挂载点目录/mnt/nfs/chaoge01,进行挂载测试
  1. [root@rsync-41 ~]# mkdir -p /mnt/nfs/chaoge01
  2. [root@rsync-41 ~]# mount -t nfs 172.16.1.31:/home/chaoge /mnt/nfs/chaoge01
  3. [root@rsync-41 ~]# df -h | grep nfs
  4. 172.16.1.31:/home/chaoge   17G  1.8G   16G   11% /mnt/nfs/chaoge01
  5. [root@rsync-41 ~]# echo '我是超哥'> /mnt/nfs/chaoge01/chaoge.txt
  6. [root@rsync-41 ~]# ll /mnt/nfs/chaoge01/
  7. 总用量 4
  8. -rw-r--r-- 1 1001 1001 13 11月 26 16:51 chaoge.txt
复制代码
测试达到题目要求。
4.添加10G硬盘,给nfs服务端/nfs-nginx-data目录使用,且仅提供给主机名为web-7的机器使用,并且要求限制上传数据映射为www用户,uid、gid均为11211;并且提供html、png资源给nginx用;确保nginx可正确访问该静态数据。

4.1.在nfs-31添加硬盘并按要求进行配置

4.1.1.添加硬盘为/dev/sdb,并进行挂载

查看磁盘/dev/sdb
  1. [root@nfs-31 ~]# lsblk | grep sdb
  2. sdb               8:16   0   10G  0 disk
复制代码
对磁盘进行分区格式化
  1. [root@nfs-31 ~]# fdisk /dev/sdb
  2. 欢迎使用 fdisk (util-linux 2.23.2)。
  3. 更改将停留在内存中,直到您决定将更改写入磁盘。
  4. 使用写入命令前请三思。
  5. Device does not contain a recognized partition table
  6. 使用磁盘标识符 0x2f483f1b 创建新的 DOS 磁盘标签。
  7. 命令(输入 m 获取帮助):n
  8. Partition type:
  9.    p   primary (0 primary, 0 extended, 4 free)
  10.    e   extended
  11. Select (default p):
  12. Using default response p
  13. 分区号 (1-4,默认 1):
  14. 起始 扇区 (2048-20971519,默认为 2048):
  15. 将使用默认值 2048
  16. Last 扇区, +扇区 or +size{K,M,G} (2048-20971519,默认为 20971519):
  17. 将使用默认值 20971519
  18. 分区 1 已设置为 Linux 类型,大小设为 10 GiB
  19. 命令(输入 m 获取帮助):w
  20. The partition table has been altered!
  21. Calling ioctl() to re-read partition table.
  22. 正在同步磁盘。
  23. [root@nfs-31 ~]# lsblk /dev/sdb
  24. NAME   MAJ:MIN RM SIZE RO TYPE MOUNTPOINT
  25. sdb      8:16   0  10G  0 disk
  26. └─sdb1   8:17   0  10G  0 part
复制代码
  1. [root@nfs-31 ~]# mkfs.ext4 /dev/sdb1
  2. mke2fs 1.42.9 (28-Dec-2013)
  3. Discarding device blocks: 完成                           
  4. 文件系统标签=
  5. OS type: Linux
  6. 块大小=4096 (log=2)
  7. 分块大小=4096 (log=2)
  8. Stride=0 blocks, Stripe width=0 blocks
  9. 655360 inodes, 2621184 blocks
  10. 131059 blocks (5.00%) reserved for the super user
  11. 第一个数据块=0
  12. Maximum filesystem blocks=2151677952
  13. 80 block groups
  14. 32768 blocks per group, 32768 fragments per group
  15. 8192 inodes per group
  16. Superblock backups stored on blocks:
  17.         32768, 98304, 163840, 229376, 294912, 819200, 884736, 1605632
  18. Allocating group tables: 完成                           
  19. 正在写入inode表: 完成                           
  20. Creating journal (32768 blocks): 完成
  21. Writing superblocks and filesystem accounting information: 完成
复制代码
新建挂载点/nfs-nginx-data,并挂载
  1. [root@nfs-31 ~]# mkdir /nfs-nginx-data
  2. [root@nfs-31 ~]# mount  /dev/sdb1 /nfs-nginx-data/
  3. [root@nfs-31 ~]# mount -l |grep sdb1
  4. /dev/sdb1 on /nfs-nginx-data type ext4 (rw,relatime)
  5. [root@nfs-31 ~]#
复制代码
4.1.2.新建www用户,uid、gid均为11211
  1. [root@nfs-31 ~]# useradd www -u 11211 -U -s /sbin/nologin
  2. [root@nfs-31 ~]# grep www /etc/passwd
  3. www:x:11211:11211::/home/www:/sbin/nologin
  4. [root@nfs-31 ~]# grep www /etc/group
  5. www:x:11211:
  6. [root@nfs-31 ~]#
复制代码
4.1.3  配置/etc/exports,并重载nfs
  1. [root@nfs-31 ~]# vim /etc/exports
  2. [root@nfs-31 ~]# cat /etc/exports
  3. /nfs/share *(ro)
  4. /nfs/upload 172.16.1.0/24(rw,sync,all_squash,anonuid=200,anongid=200)
  5. /home/chaoge 172.16.1.41(rw,sync,all_squash,anonuid=1001,anongid=1001)/nfs-nginx-data 172.16.1.7(rw,sync,all_squash,anonuid=11211,anongid=11211)[root@nfs-31 ~]# systemctl reload nfs[root@nfs-31 ~]# showmount -e 127.0.0.1Export list for 127.0.0.1:/nfs/share      */nfs/upload     172.16.1.0/24/nfs-nginx-data 172.16.1.7/home/chaoge    172.16.1.41
复制代码
4.1.4  进入/nfs-nginx-data目录,准备好index文件等资源。
  1. [root@nfs-31 nfs-nginx-data]# wget -O https://www.cnblogs.com/stop.png https://img3.chinadaily.com.cn/images/202411/25/67441c40a310b5910b7eef9e.png
  2. --2024-11-26 22:41:47--  https://img3.chinadaily.com.cn/images/202411/25/67441c40a310b5910b7eef9e.png
  3. 正在解析主机 img3.chinadaily.com.cn (img3.chinadaily.com.cn)... 110.40.23.137, 118.112.19.103, 2407:3740:0:3::68, ...
  4. 正在连接 img3.chinadaily.com.cn (img3.chinadaily.com.cn)|110.40.23.137|:443... 已连接。
  5. 已发出 HTTP 请求,正在等待回应... 200 OK
  6. 长度:84479 (82K) [image/png]
  7. 正在保存至: “https://www.cnblogs.com/stop.png”
  8. 100%[============================================================>] 84,479      --.-K/s 用时 0.007s  
  9. 2024-11-26 22:41:47 (11.3 MB/s) - 已保存 “https://www.cnblogs.com/stop.png” [84479/84479])
  10. [root@nfs-31 nfs-nginx-data]# ll
  11. 总用量 100
  12. drwx------ 2 root root 16384 11月 26 22:05 lost+found
  13. -rw-r--r-- 1 root root 84479 11月 25 14:42 https://www.cnblogs.com/stop.png
  14. [root@nfs-31 nfs-nginx-data]# vim index.html
  15. [root@nfs-31 nfs-nginx-data]# cat index.html
  16. <h1>这是一个网页</h1>
  17. <img src="https://www.cnblogs.com/stop.png" alt="这是一个示例图片">
  18. [root@nfs-31 nfs-nginx-data]#
复制代码
4.1.5  修改/nfs-nginx-data目录属性
  1. [root@nfs-31 nfs-nginx-data]# chown -R www.www /nfs-nginx-data/
复制代码
4.2.在web-7机器上部署nginx,并挂载nfs上的数据。

4.2.1.新建www用户
  1. [root@web-7 ~]# useradd -u 11211 -U -s /sbin/nologin -M www
  2. [root@web-7 ~]# grep www /etc/passwd
  3. www:x:11211:11211::/home/www:/sbin/nologin
复制代码
4.2.2.部署nginx服务,修改nginx用户。
  1. [root@web-7 ~]#  yum install -y nginx
  2. [root@web-7 ~]# vim /etc/nginx/nginx.conf
  3. [root@web-7 ~]# grep -n '^user' /etc/nginx/nginx.conf
  4. 5:user www;
复制代码
4.2.3.启动nginx服务,测试网页。
  1. [root@web-7 ~]# systemctl start nginx
  2. [root@web-7 ~]# systemctl status nginx
  3. ● nginx.service - The nginx HTTP and reverse proxy server
  4.    Loaded: loaded (/usr/lib/systemd/system/nginx.service; disabled; vendor preset: disabled)
  5.    Active: active (running) since 三 2024-11-27 09:46:20 CST; 13s ago
  6.   Process: 18446 ExecStart=/usr/sbin/nginx (code=exited, status=0/SUCCESS)
  7.   Process: 18443 ExecStartPre=/usr/sbin/nginx -t (code=exited, status=0/SUCCESS)
  8.   Process: 18441 ExecStartPre=/usr/bin/rm -f /run/nginx.pid (code=exited, status=0/SUCCESS)
  9. Main PID: 18448 (nginx)
  10.    CGroup: /system.slice/nginx.service
  11.            ├─18448 nginx: master process /usr/sbin/nginx
  12.            ├─18449 nginx: worker process
  13.            └─18450 nginx: worker process
  14. 11月 27 09:46:19 web-7 systemd[1]: Starting The nginx HTTP and reverse proxy server...
  15. 11月 27 09:46:20 web-7 nginx[18443]: nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
  16. 11月 27 09:46:20 web-7 nginx[18443]: nginx: configuration file /etc/nginx/nginx.conf test is s...sful
  17. 11月 27 09:46:20 web-7 systemd[1]: Started The nginx HTTP and reverse proxy server.
  18. Hint: Some lines were ellipsized, use -l to show in full.
复制代码
  1. [root@web-7 ~]# netstat -tunlp | grep nginx
  2. tcp        0      0 0.0.0.0:80              0.0.0.0:*               LISTEN      18448/nginx: master
  3. tcp6       0      0 :::80                   :::*                    LISTEN      18448/nginx: master
  4. [root@web-7 ~]# ps -ef | grep nginx
  5. root     18448     1  0 09:46 ?        00:00:00 nginx: master process /usr/sbin/nginx
  6. www      18449 18448  0 09:46 ?        00:00:00 nginx: worker process
  7. www      18450 18448  0 09:46 ?        00:00:00 nginx: worker process
  8. root     18756 18079  0 10:01 pts/0    00:00:00 grep --color=auto nginx
复制代码
测试网页能打开

4.2.4.安装nfs-utils,挂载nfs
  1. [root@web-7 ~]#  yum install nfs-utils -y
复制代码
查看nfs-31上开放情况
  1. [root@web-7 ~]# showmount -e 172.16.1.31
  2. Export list for 172.16.1.31:
  3. /nfs/share      *
  4. /nfs/upload     172.16.1.0/24
  5. /nfs-nginx-data 172.16.1.7
  6. /home/chaoge    172.16.1.41
复制代码
挂载
  1. [root@web-7 ~]# mount -t nfs 172.16.1.31:/nfs-nginx-data /usr/share/nginx/html
  2. [root@web-7 ~]# df -h | grep nfs
  3. 172.16.1.31:/nfs-nginx-data  9.8G   37M  9.2G    1% /usr/share/nginx/html
  4. [root@web-7 ~]# ll /usr/share/nginx/html/
  5. 总用量 104
  6. -rw-r--r-- 1 www www    80 11月 26 22:49 index.html
  7. drwx------ 2 www www 16384 11月 26 22:05 lost+found
  8. -rw-r--r-- 1 www www 84479 11月 25 14:42 https://www.cnblogs.com/stop.png
  9. [root@web-7 ~]#
复制代码
4.2.5.刷新网页,已能访问nfs上的资源


修改网页再次刷新
  1. [root@web-7 ~]# echo '<p>-----我是底部---</p>' >> /usr/share/nginx/html/index.html
复制代码

至此已完成题目。

来源:https://www.cnblogs.com/funlyp/p/18567483
免责声明:由于采集信息均来自互联网,如果侵犯了您的权益,请联系我们【E-Mail:cb@itdo.tech】 我们会及时删除侵权内容,谢谢合作!

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x

举报 回复 使用道具