【原创】AIX 下使用NFS挂载凝思linux下的文件系统出错记录

环境说明:

210.10.3.78 凝思Liunx

210.10.3.216 AIX

现象:

78共享,本机可mount,但216不能mount

操作过程如下(root):

/* 凝思Liunx上操作 */

共享:

#/etc/rc.d/init.d/portmap start

#/etc/rc.d/init.d/nfsserver start

 

#vi /etc/exports

添加

/home  *(rw,sync)

 

挂载:

mount -t nfs /home  /mnt/test

 

卸载:

umount /mnt/test

/* AIX 上操作 */

mount -F nfs /home  /mnt/test

 

提示:

Not owner

 

经百度后,知:

默认情况下AIX与凝思Liunx NFS使用的端口不一致,只要设置下就可以了

解决方法:

/* AIX上操作 */

nfso -o nfs_use_reserved_ports=1

mount /home  /mnt/test

 

 

----- 2013-08-05

posted @ 2016-04-12 20:42  xiaoleisme  阅读(533)  评论(0编辑  收藏  举报