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

NFS服务器搭建与autofs自动挂载

时间:2019-11-17 01:37:41      阅读:71      评论:0      收藏:0      [点我收藏+]

标签:支持   file   time   目录   ice   系统   led   nfs-utils   配置   

什么是NFS?

 NFS,是Network File System的简写,即网络文件系统。网络文件系统是FreeBSD支持的文件系统中的一种,也被称为NFS. NFS允许一个系统在网络上与他人共享目录和文件。通过使用NFS,用户和程序可以像访问本地文件一样访问远端系统上的文件。

 模式: C/S 模式

 端口:

RHEL6是以NFSv4作为默认版本,NFSv4使用TCP协议(端口号是2049)和NFS服务器建立连接

 安装nfs

安装NFS软件包

[root@xue63 ~]#rpm -vih /mnt/Packages/nfs-utils-1.2.3-15.el6.x86_64.rpm   

 yum -y install nfs-utils

 安装客户端:

命令:mount  showmount 

 配置文件位置:

[root@xue63 ~]# ls /etc/exports

 启动NFS服务

先查看2049端口是否开放:

[root@xue63 ~]#netstat -anutp | grep 2049

 [root@xue63 ~]# service nfs start

Startingntpd:                                             [  OK  ]

[root@xue63 ~]# chkconfig nfs on

再查看:

[root@xue63 ~]#netstat -anutp | grep 2049

 

 

此服务的使用方法

查看nfs服务:

showmount  -e  NFSIP

例:

[root@xuegod64 ~]#showmount  -e 192.168.1.63

 

挂载:

mount    192.168.1.63:/tmp/a    /mnt

 [root@xuegod64 ~]#touch  /tmp/a/nfs/b.txt

只要使用到/tmp/a/nfs目录,就会自动挂载

 

NFS服务器搭建与autofs自动挂载

标签:支持   file   time   目录   ice   系统   led   nfs-utils   配置   

原文地址:https://www.cnblogs.com/yingp/p/11874756.html

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