AIX 6.1
一,在服务端mxs04-ts 操作
1. 检查nfs是否启动
# lssrc -g nfs
# startsrc -g nfs
# lssrc -g nfs
# lssrc -g nfs
# startsrc -g nfs
# lssrc -g nfs
看到前五个服务为active即启动了。
2. 配置server端hosts (在其中添加客户端ip及主机)
# vi /etc/hosts
10.88.51.87 mxs06-ts
3. 配置exports文件
# vi /etc/exports
/data02 -rw,access=mxs04-ts
二,在客户端mxs06-ts 操作
1. 在客户端mxs06-ts上建立文件夹 /data/d3
2. 在客户端mxs06-ts 检查进程 portmap是否启动正常
# lssrc -s portmap (状态为active即可)
# lssrc -s portmap (状态为active即可)
3. 在客户端配置/etc/hosts (添加server端ip及主机名)
# vi /etc/hosts
10.88.51.85 mxs04-ts
# vi /etc/hosts
10.88.51.85 mxs04-ts
4. 在客户端mxs06-ts配置 /etc/filesystems, 添加如下项目:
/data/d3:
dev = /data02
vfs=nfs
nodename=mxs04-ts
mount=true
type-nfs
options=rw,bg,hard,intr,vers=3,rsize=32768,wsize=32768,timeo=600,proto=tcp,biods=32
account=flase
dev = /data02
vfs=nfs
nodename=mxs04-ts
mount=true
type-nfs
options=rw,bg,hard,intr,vers=3,rsize=32768,wsize=32768,timeo=600,proto=tcp,biods=32
account=flase
5. 在mxs06-ts 上挂NFS
root@mxs06-ts # mount /data/d3
mount: 1831-011 access denied for mxs04-ts:/data02
mount: 1831-008 giving up on:
mxs04-ts:/data02
The file access permissions do not allow the specified action.
root@mxs06-ts #
mount: 1831-011 access denied for mxs04-ts:/data02
mount: 1831-008 giving up on:
mxs04-ts:/data02
The file access permissions do not allow the specified action.
root@mxs06-ts #
处理方式:
要解決這個問題可手工進行如下兩步:
1,將文件/etc/exports中"access=xxxxx"的部分刪除;
2 ,在server端運行 exportfs -a,然后在客户端挂载
1,將文件/etc/exports中"access=xxxxx"的部分刪除;
2 ,在server端運行 exportfs -a,然后在客户端挂载
来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/35489/viewspace-719419/,如需转载,请注明出处,否则将追究法律责任。
转载于:http://blog.itpub.net/35489/viewspace-719419/