ubuntu nfs server

端口号2049

转:http://www.linuxidc.com/Linux/2012-09/70728.htm

首先安装nfs-kernel-server

sudo 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 rpcbind 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/

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

    A+
发布日期:2021年08月03日  所属分类:未分类

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: