码迷,mamicode.com
首页 > Web开发 > 详细

NFS (network file systerm) 只用于局域网

时间:2014-07-15 11:37:13      阅读:215      评论:0      收藏:0      [点我收藏+]

标签:局域网   network   服务器   points   

服务端:

[root@localhost tmp]# rpm -qa | grep nfs
nfs-utils-lib-1.0.8-7.6.el5
nfs-utils-1.0.9-44.el5 //提供文件系统
system-config-nfs-1.3.23-1.el5


[root@localhost tmp]# rpm -qa | grep portmap
portmap-4.0-65.2.2.1 //提供rpc协议


[root@localhost tmp]# /etc/init.d/nfs restart
[root@localhost tmp]# /etc/init.d/portmap restart


[root@localhost tmp]# vim /etc/exports //配置文件,开始是空文件

/tmp    192.168.1.0/24(ro,no_root_squash) // 共享目录  共享网段(共享出去之后的属性)


[root@localhost tmp]# showmount -a  //查看已经挂载共享目录的客户端/一般在服务器使用All mount points on localhost.localdomain:
192.168.1.200:/tmp



客户端:

[root@localhost opt]# mount -t nfs 192.168.1.250:/tmp /opt
-t 指定文件系统类型

autofs自动挂载:
vim /etc/auto.master
/mynfs  /etc/auto.nfs
vim /etc/auto.nfs
haha -fstype=nfs 192.168.1.250:/tmp
mkdir mynfs
/etc/init.d/autofs restart

[root@localhost opt]# showmount -e 192.168.1.250
Export list for 192.168.1.250:
/tmp 192.168.1.0/24    //客户端可以查看服务器的共享







NFS (network file systerm) 只用于局域网,布布扣,bubuko.com

NFS (network file systerm) 只用于局域网

标签:局域网   network   服务器   points   

原文地址:http://jpkingofkings.blog.51cto.com/4342950/1437945

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