CentOS NFS服务器的创建

网络 网络管理
文章中我们介绍了CentOS的NFS服务器的相关设置以及调整内容。那么希望大家通过文章内容能够掌握这部分的知识。

不少系统中,都有NFS的需要。那么在一些不产用以及开发系统中如何添加NFS平台呢?这里我们就来讲解一下CentOS的NFS服务器的创建。希望对大家有所帮助。CentOS下搭建NFS平台的具体过程:

1、先在VM下装一个CentOS作为NFS服务器(nfs-server.example.com),再克隆一个作为NFS客户端(nfs-client.example.com),MINI安装即可.

NFS服务器分配IP为192.168.1.100,NFS客户端分配IP为192.168.1.200.

nfs-server.example.com配置如下:

[root@nfs-server ~]# cat /etc/sysconfig/network

NETWORKING=yes

HOSTNAME=nfs-server.example.com[root@nfs-server ~]# cat /etc/hosts

# Do not remove the following line, or various programs

# that require network functionality will fail.

127.0.0.1   localhost.localdomain localhost

192.168.1.200   nfs-client.example.com   nfs-client

nfs-client.example.com配置如下:

[root@nfs-client ~]# cat /etc/sysconfig/network

NETWORKING=yes

HOSTNAME=nfs-client.example.com[root@nfs-client ~]# cat /etc/hosts

# Do not remove the following line, or various programs

# that require network functionality will fail.

127.0.0.1   localhost.localdomain localhost

192.168.1.100   nfs-server.example.com   nfs-server2、配置NFS服务器(nfs-server.example.com)

默认安装下已经装好NFS服务了,所以只用开启服务器即可.

[root@nfs-server ~]# chkconfig nfs on比如要共享/data/目录:

[root@nfs-server ~]# mkdir /data

[root@nfs-server ~]# vi /etc/exports

/data/ 192.168.1.200(rw,no_root_squash,no_all_squash,sync)现在就可以启动NFS服务了.

[root@nfs-server ~]# service nfs start3、配置NFS客户端(nfs-client.example.com)

测试NFS服务器.

[root@nfs-client ~]# showmount -e nfs-server

Export list for share:

/data 192.168.1.200如果没有出现以上信息,说明NFS服务器还没配置正确,一般是IP设置错误.

MOUNT共享目录/data:

[root@nfs-client ~]# mkdir /data

[root@nfs-client ~]# mount -t nfs 192.168.1.100:/data /data接下来就测试共享目录/data是否可读写:

[root@nfs-client ~]# echo "hello world" > /data/test然后上NFS服务器看看是否有/data/test文件:)?

如果想NFS客户端一开机就自动挂载共享目录,只需修改/etc/fstab,加 入以下一句就可以了:

192.168.1.100:/data  /data  nfs   rw   0 04、排错参考

当/etc/exports设置的权限,不符合client端的来源时,则会出现以下错误信息:

mount: hostname:/dir failed, reason given by server: Permission denied

然而必须注意的是,若在nfs server的/etc/hosts內有设置IP与hostname的对照

则nfs会先把来源IP转换成hostname,再与/etc/exports內的设置做对比

若此时/etc/exports的设置使用IP而非hostname,则会产生? 法匹配的错误

? 此而出现,虽然來源IP在/etc/exports已正确设置,却仍然发生Permission denied的现象

解决方案是在/etc/exports內采用hostname,避免使用IP,或者是设置正确的IP段.

来源:http://www.sofee.cn/blog/2006/09/29/46/

责任编辑:佟健 来源: 互联网
相关推荐

2010-08-04 11:04:48

UbuntuNFS服务器

2010-03-31 15:45:45

CentOS系统

2010-08-05 14:15:20

NFS服务器

2010-08-04 16:07:05

NFS服务器

2010-08-05 13:40:06

NFS服务器

2010-08-03 11:49:26

Ubuntu nfs服

2009-09-08 16:31:07

2009-09-08 13:48:13

NFS服务器

2010-08-05 09:43:09

NFS服务器安全

2010-08-04 15:35:02

2009-09-01 10:38:13

NFS服务器

2010-07-27 10:46:31

Linux NFS服务

2010-08-03 16:08:12

2010-08-05 14:21:43

NFS服务器

2010-08-06 13:06:28

NFS服务器

2010-08-03 17:07:55

NFS服务器

2010-07-27 13:53:23

NFS服务器

2010-08-05 09:49:18

NFS服务器配置

2010-08-04 12:14:23

NFS服务器

2010-07-27 13:59:53

Linux NFS服务
点赞
收藏

51CTO技术栈公众号