码迷,mamicode.com
首页 > 系统相关 > 详细

Ubuntu 12.04安装NFS server

时间:2015-03-31 14:11:36      阅读:218      评论:0      收藏:0      [点我收藏+]

标签:

首先安装nfs-kernel-server

apt-get install nfs-kernel-server 

然后创建一个目录:

mkdir -p /opt/share 

并赋予权限777:

chmod -R 777 /opt/share

在/etc/exports文件中添加配置:

/opt/share 10.112.18.0/255.255.255.0(rw,no_root_squash) 

在/etc/hosts.allow中添加配置:

portmap:10.112.18.0/255.255.255.0 

在/etc/hosts.deny中添加配置:

portmap:ALL 

重新启动两个服务:

service portmap restart 

service nfs-kernel-server restart

在另一台Ubuntu上安装nfs-common

apt-get install nfs-common 

然后创建目录test

mkdir ~/test 

然后运行测试命令看一下:

# showmount -e 10.112.18.158 

Export list for 10.112.18.158: 

/opt/share 10.112.18.0/255.255.255.0 

找到nfs server的挂载目录了。现在手工挂载:

mount -t nfs4 10.112.18.158:/opt/share ~/test/ 

现在可以测试了,应该成功。

Ubuntu 12.04安装NFS server

标签:

原文地址:http://www.cnblogs.com/lidabo/p/4380556.html

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