码迷,mamicode.com
首页 > 其他好文 > 详细

NFS服务器配置

时间:2021-02-27 13:03:37      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:res   服务器配置   运行   art   share   配置文件   and   chm   inf   

NFS服务器配置和操作演示

 

实验设置:

Server-nfs:192.168.6.233

Client-nfs-linux:192.168.6.243

Client-nfs-windows:192.168.6.3

 

实验步骤:

1、配置网络环境(静态IP地址)

2、在服务器端安装nfs服务

nfs-utils、rpcbind

【yum -y install nfs-utils】

 

3、创建共享目录/opt/share

【cd /opt】

【mkdir share】

【chmod -R 777 share】

 

4、共享目录(修改配置文件:/etc/exports)

【vim /etc/exports】

/opt/share 192.168.1.0/24(rw,all_squash)

 

nfsnobody:nfs的系统用户

 

5、重启nfs服务

【systemctl restart nfs】

 

6、客户端测试(挂载)

Linux: mount -f nfs <对方IP>:<共享的绝对路径> 本地挂载点

【cd /mnt】

【mkdir nfs_share】

【mount -t nfs 192.168.1.110:/opt/share /mnt/nfs_share】

【cd nfs_share】

【touch a b c】

【ls -l】

 

【vim /etc/exports】

/opt/ttt 192.168.1.0/24(ro)

 

Windows: (安装nfs的客户端软件)

技术图片

【运行】-【cmd】-【命令提示符】

【showmount -e 192.168.1.110】

【mount \192.168.1.110\opt\share x:】

打开【我的电脑】就可以看到共享的链接

NFS服务器配置

标签:res   服务器配置   运行   art   share   配置文件   and   chm   inf   

原文地址:https://www.cnblogs.com/BrokenEaves/p/14452681.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!