Linux之动静分离

2022/1/10 7:08:11

本文主要是介绍Linux之动静分离,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

创建NFS挂载点

mkdir /static
vim /etc/exports
/static      172.16.1.0/20(rw,sync,all_squash,anonuid=666,anongid=666)
systemctl restart nfs-server
chown -R www.www /static/

将静态资源放置于挂载点内

mkdir /opt/static/s
[root@web01 static]# cp -r /opt/bbs/static/* /opt/static/s/

挂载到lb01

yum install nfs-utils -y
mount -t nfs 172.16.1.31:/static /opt/static/

测试

 



这篇关于Linux之动静分离的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程