NAS

1.购买文件存储 NAS
2.创建文件系统
3.添加挂载点
4.通过命令行挂载到ECS

centos:sudo yum install nfs-utils
debian:sudo apt-get update && sudo apt-get install nfs-common

sudo mount -t nfs -o vers=3,nolock,proto=tcp,rsize=1048576,wsize=1048576,hard,timeo=600,retrans=2,noresvport 088e649632-dls32.cn-hangzhou.nas.aliyuncs.com:/ /mnt

查看挂载结果
df -h | grep aliyun

手动配置重启自动挂载

centos7.x--8.x
/etc/fstab
添加
#v3协议
file-system-id.region.nas.aliyuncs.com:/ /mnt nfs vers=3,nolock,proto=tcp,rsize=1048576,wsize=1048576,hard,timeo=600,retrans=2,_netdev,noresvport 0 0