`
wsql
  • 浏览: 11787921 次
  • 性别: Icon_minigender_1
  • 来自: 深圳
文章分类
社区版块
存档分类
最新评论

Linux下简单配置nfs文件系统

 
阅读更多

文中使用的是rhel4 版本的linux,其他版本会有不同。

服务器端:

1、配置/etc/exports

格式说明:

共享目录

指定ip地址的主机(192.168.1.123)/网段中所有主机(192.168.10.0/24)

(共享参数)

/u01/workspace 192.168.10.0/24(rw,sync)

/u01/archives 192.168.10.0/24(rw,sync)

Nfs 访问权限说明

ro

只读访问

rw

读写访问

sync

所有数据在请求时写入共享

async

NFS在写入数据前可以相应请求

secure

NFS通过1024以下的安全TCP/IP端口发送

insecure

NFS通过1024以上的端口发送

wdelay

如果多个用户要写入NFS目录,则归组写入(默认)

no_wdelay

如果多个用户要写入NFS目录,则立即写入,当使用async时,无需此设置。

hide

在NFS共享目录中不共享其子目录

no_hide

共享NFS目录的子目录

subtree_check

如果共享/usr/bin之类的子目录时,强制NFS检查父目录的权限(默认)

no_subtree_check

和上面相对,不检查父目录权限

all_squash

共享文件的UID和GID映射匿名用户anonymous,适合公用目录。

no_all_squash

保留共享文件的UID和GID(默认)

root_squash

root用户的所有请求映射成如anonymous用户一样的权限(默认)

no_root_squas

root用户具有根目录的完全管理访问权限

anonuid=xxx

指定NFS服务器/etc/passwd文件中匿名用户的UID

2、重启服务器端的nfs服务:

service portmap restart

service nfs restart

使修改生效

3、配置客户端

mount -t nfs -o rw,bg,hard,nointr,rsize=32768,wsize=32768,timeo=600,actimeo=0 192.168.10.121:/u01/archives /u01/archives

mount -t nfs -o rw,bg,hard,nointr,rsize=32768,wsize=32768,timeo=600,actimeo=0 192.168.10.121:/u01/workspace /u01/workspace

/etc/Fstab

192.168.1.101:/oracle/archive /oracle/archive nfs defaults 0 0

或者/etc/rc.d/rc.local 使之开机启动

mount -t nfs -o rw,bg,hard,nointr,rsize=32768,wsize=32768,timeo=600,actimeo=0 192.168.10.121:/u01/archives /u01/archives

mount -t nfs -o rw,bg,hard,nointr,rsize=32768,wsize=32768,timeo=600,actimeo=0 192.168.10.121:/u01/workspace /u01/workspace

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics