CentOS7搭建NFS

Posted fourw

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CentOS7搭建NFS相关的知识,希望对你有一定的参考价值。

文件存储服务器配置:

安装NFS
yum install -y rpcbind nfs-utils
创建共享目录
mkdir /root/sharefile
修改目录权限
chmod 0755 -R sharefile
修改NFS配置文件
vi /etc/exports
----------------------------
/root/sharefile/ 192.168.2.121(rw,no_root_squash,no_all_squash,sync) 192.168.2.122(rw,no_root_squash,no_all_squash,sync)
----------------------------
启动NFS服务
systemctl start nfs
查看共享目录状态
showmount -e 192.168.2.120

文件存储客户机配置:
安装NFS
yum install nfs-utils
查看共享目录
showmount -e 192.168.2.120
创建共享目录
mkdir /root/sharefile
挂载共享目录
mount -t nfs 192.168.2.120:/root/sharefile /root/sharefile

以上是关于CentOS7搭建NFS的主要内容,如果未能解决你的问题,请参考以下文章

多测师软件测试培训之centos7搭建docker环境

Centos7搭建Harbor私有仓库

CentOS7 LNMP+phpmyadmin环境搭建(LNMP环境搭建)

阿里云CentOS7搭建Apache+PHP+MySQL环境,注意php加载mysql的方法

环境搭建-安装CentOS7

centos7搭建FTP服务器