标签:统一 内存 mnt root nfs block 服务搭建 rpcbind sync
NFS服务搭建与配置NFS介绍
安装测试2个操作系统一个服务端一个客户端,服务端IP为192.168.63.100客户端192.168.63.101,这两个系统许安装nfs-utils rpcbind
[root@100xuni1 ~]# yum install -y nfs-utils rpcbind
安装完成后在服务端配置exports文件。
[root@100xuni1 ~]# vim /etc/exports ##编辑这个文件里加入以下内容
/home/nfstestdir 192.168.63.0/24(rw,sync,all_squash,anonuid=1000,anongid=1000)
创建共享的目录
[root@100xuni1 ~]# mkdir /home/nfstestdir
更改权限
[root@100xuni1 ~]# chmod 777 /home/nfstestdir
启动rpcbind
[root@100xuni1 ~]# systemctl start rpcbind ##启动完成后查看rpcbind的是否开启看下图
启动nfs
[root@100xuni1 ~]# systemctl start nfs ##启动完nfs后查看是否开启看下图
设置开机启动
[root@100xuni1 ~]# systemctl enable rpcbind
[root@100xuni1 ~]# systemctl enable nfs
首先查看服务端的nfs共享有没有把你的ip放开
[root@101xuni2 ~]# showmount -e 192.168.63.100 ##这个ip是服务端的
挂载
[root@101xuni2 ~]# mount -t nfs 192.168.63.100:/home/nfstestdir /mnt/ ##把服务端/home/nfstestdir挂载到/mnt/下
测试把客户端的mnt目录下新建个文件
客户端新建文件完成后去服务端的/home/nfstestdir/下查看有没有hanshuo.txt文件
53次课( NFS介绍、 NFS服务端安装配置、NFS配置选项)
标签:统一 内存 mnt root nfs block 服务搭建 rpcbind sync
原文地址:http://blog.51cto.com/8043410/2164648