标签:
环境说明:
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
【原创】AIX 下使用NFS挂载凝思linux下的文件系统出错记录
标签:
原文地址:http://www.cnblogs.com/xiaole10368/p/5384354.html