💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、豆包、星火、月之暗面及文生图、文生视频 广告
教程视频:[https://www.jtthink.com/course/play/2855](https://www.jtthink.com/course/play/2855) 安装(主机操作,主机指的是,文件存在的主机,所有的节点都来这个主机读取文件,主机不能挂) 1.sudo yum -y install nfs-utils 2.配置好nfs的指定端口 sudo vi /etc/sysconfig/nfs 加入 LOCKD_TCPPORT=30001#TCP锁使用端口 LOCKD_UDPPORT=30002#UDP锁使用端口 MOUNTD_PORT=30003#挂载使用端口 STATD_PORT=30004#状态使用端口 ![](https://img.kancloud.cn/ea/65/ea65921e9656c71b109979bfc1c8c5ca_624x455.png) 启动/重启服务 1.sudo systemctl restart rpcbind.service 2.sudo systemctl restart nfs-server.service 开机启动: 1.sudo systemctl enable rpcbind.service 1.sudo systemctl enable nfs-server.service ![](https://img.kancloud.cn/22/2d/222de4c042e6ce00e4af6d6cfb899f29_618x418.png) 写入的内容就是你要共享的目录,注意:0/24的正确写法,指的是ip的范围可访问 ![](https://img.kancloud.cn/2e/48/2e4875d802ec88af0d817c967784601d_860x580.png) showmount -e localhost sudo systemctl restart nfs-server.service ![](https://img.kancloud.cn/ef/d2/efd20aabd27580e60dfc5c1dca1f9bc0_820x455.png) 尝试挂载中 最后的目录,是可以随意的、 mount -t nfs 192.168.67.124:/goapi /goapi ![](https://img.kancloud.cn/79/e4/79e4f36470a7f367d42f25bff5c922b7_929x539.png)