NFS 共享文件夹解决方案 NFS(Network File System)是一种允许多台主机共享文件夹的技术。下面将详细介绍如何使用 NFS 实现共享文件夹的功能。 NFS 共享文件夹配置 需要安装 nfs-utils 和 rpcbind 软件包。如果虚拟机可以连外网,可以使用以下命令进行安装: `yum install nfs-utils rpcbind` 如果虚拟机不可以连外网,需要将安装盘挂载到/mnt 目录,然后解压操作系统的安装包,使用以下命令进行安装: `rpm -iv example.rpm` 服务端配置 1. 设置开机启动服务: `chkconfig nfs on` `chkconfig rpcbind on` `chkconfig iptables off` 2. 启动相关服务: `service rpcbind restart` `service nfs restart` `service iptables stop` 3. 创建共享目录: `mkdir -p /data/nfs_share` 4. 编辑/etc/exports 文件添加如下内容: `vi /etc/exports` `/data/nfs_share 192.168.21.*(rw,sync,root_squash)` 其中,`rw` 表示读写权限,`sync` 表示文件同时写入硬盘和内存,`root_squash` 表示 NFS 客户端连接服务端时如果使用的是 root 的话,那么对服务端分享的目录来说,拥有匿名用户权限。 5. 刷新配置立即生效: `exportfs -a` 6. 权限配置: `chown 760 /data/nfs_share` `chgrp /data/nfs_share` 客户端配置 1. 设置开机启动服务: `chkconfig nfs on` `chkconfig rpcbind on` `chkconfig iptables off` 2. 启动相关服务: `service rpcbind restart` `service nfs restart` `service iptables stop` 3. 创建共享目录: `mkdir -p /data/nfs_share` 4. 查看共享目录: `showmount -e 192.168.21.14` 5. 挂载目录: `mount -t nfs 192.168.21.14:/data/nfs_share /data/nfs_share` 6. 检查共享目录挂载情况: `df -h` 如果显示 IP 目录的就是共享的,说明共享成功。 7. 开机自动挂载: `vi /etc/fstab` 最后一行加入: `192.168.21.14:/data/nfs_share insecure,rw,async,no_root_squash 0 1` 这样,NFS 共享文件夹就配置好了。
- 粉丝: 0
- 资源: 2
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助