适用场景:
客户群体:公司
NFS:网络文件服务器,通过网络发送文件,是linux/unix系统之间共享文件的一种协议
案例:
一台服务器:192.168.16.104
两台客户机:
先关掉所有机器的两个防火墙
systemctl stop firwalld
setenforce 0
服务器:
安装NFS
yum -y install nfs-utils
创建资源目录:
mkdir /webdata
echo 'nfs test 2023/1/26' >webdata/index.html
编辑NFS配置文件:
vim /etc/exports
写入命令:
/webdata 192.168.16.0/24 (rw)
意思是在此目录可用,192.168.16.0此网段可访问,只读只写
启动NFS:
systemctl start nfs-server
开机自启:
systemctl enable nfs-server
检查输出的目录:
exportfs -v
(出现括号内有rw ro字的不行,没有就行)
客户机:
安装:yum -y install nfs-utils httpd
启动:systemctl start httpd
systemctl enable httpd
手动挂载:mount -t nfs 192.168.86.129(服务器地址):/webdata /var/www/html
查看:cat /var/www/html/index.html
查看挂载:df
使用web客户端查看web服端:
直接在客户端网页输入服务端地址