Linux服务器共享目录Centos7

0.环境

服务器:

三台机器共享写入 /data/www/dboop/static/download目录

1.安装nfs

yum -y install nfs-utils rpcbind
# 开机启动
systemctl enable rpcbind.service
systemctl enable nfs-server.service

# 重启服务
systemctl restart rpcbind.service
systemctl restart nfs-server.service

2.共享设置

10.10.0.1 上执行

mkdir /public/downloadnew
ln -s /public/downloadnew /data/www/dboop/static/download -f


vim /etc/exports
#输入
/public 10.10.0.2(insecure,rw,sync,no_root_squash) 10.10.0.3(insecure,rw,sync,no_root_squash) 

exportfs -rv

10.10.0.2/3 上执行

vim /etc/fstab 
#输入
10.10.0.1:/public  /mnt/public       nfs    defaults 0 0
mkdir /mnt/public
mount  -a 

df -h 


ln -s /mnt/public/downloadnew /data/www/dboop/static/download -f

到此 10.10.0.1/2/3 三台机器共同写入读取 /data/www/dboop/static/download

>> Home

51ak

2021/03/21

Categories: 运维 centos Tags: 原创

《数据库工作笔记》公众号
扫描上面的二维码,关注我的《数据库工作笔记》公众号