Linux 离线安装NFS共享文件

一、检查端口是否被占用

        程序默认使用2049端口,如果被占用需要修改端口

二、在线安装,服务器(共享端)和客户端(使用端)执行以下命令安装
yum install nfs-utils rpcbind -y
三、离线安装过程

        链接:https://pan.baidu.com/s/168E2xPHQuKfx9Rq1ezERBw 
        提取码:1234

       访问以上连接下载离线安装包。

        安装命令如下:

        进入到安装包的目录

rpm -ivh *.rpm
四、配置启动参数
#服务器端执行
# 开机启动
systemctl enable rpcbind.service
systemctl enable nfs-server.service
# 启动nfs
systemctl start rpcbind.service
systemctl start nfs-server.service
service nfs start
# 检查启动项
chkconfig nfs on
#客户端执行
systemctl enable rpcbind.service
systemctl start rpcbind.service
五、配置文件

       在服务端创建需要共享的目录 /data

        然后编辑: vi /etc/exports 文件

        清空/exports文件,并添加一下两行代码

## 172.17.40.224 ,172.17.40.225 是可以访问服务器的客户端IP地址
/data/ 172.17.40.224(insecure,rw,sync,no_root_squash)
/data/ 172.17.40.225(insecure,rw,sync,no_root_squash)
      执行命令   exportfs -arv  使刚刚的配置生效
六、客户端挂载共享文件

        在客户端执行命令:showmount -e 172.17.40.223  会显示服务器端共享的文件

        在客户端新建/data文件夹

        执行以下命令挂载目录:

mount -t nfs 172.17.40.223:/data /data

        设置开机自动挂载:

172.17.40.223:/data  /data	nfs defaults	0 0

操作完成。

你可能感兴趣的:(linux,linux,服务器,centos,UFS,共享文件)