ChinaUnix首页 > 精华文章 > AIX > 正文

[精华] AIX 下应用NFS出错,无法mount NAS共享出来的硬盘


http://www.chinaunix.net 作者:symencheng  发表于:2007-02-28 21:32:54
发表评论】 【查看原文】 【AIX讨论区】【关闭

出现以下错误:

# showmount -e 192.168.100.71
export list for 192.168.100.71:
/d 192.168.100.241
# mount 192.168.100.71:/d /mnt
mount: 1831-008 giving up on:
192.168.100.71:/d
vmount: Operation not permitted.
# mount -f 192.168.100.71:/d /mnt
mount: 1831-008 giving up on:
192.168.100.71:/d
vmount: Operation not permitted.
# mount -n 192.168.100.71:/d /mnt
mount: 0506-334 /mnt is not a known file system.
#



 george16 回复于:2006-05-16 06:08:19

用SMIT MKNFSMNT试一试?可以吗?严重关注。


 george16 回复于:2006-05-16 06:08:59

另外,我想看看你的IFCONFIG -A的输出结果


 symencheng 回复于:2006-05-16 12:53:38

# ifconfig -a
en0: flags=4e080863,80<UP,BROADCAST,NOTRAILERS,RUNNING,SIMPLEX,MULTICAST,GROUPRT,64BIT,PSEG,CHAIN>
        inet 192.168.100.241 netmask 0xffffff00 broadcast 192.168.100.255
lo0: flags=e08084b<UP,BROADCAST,LOOPBACK,RUNNING,SIMPLEX,MULTICAST,GROUPRT,64BIT>
        inet 127.0.0.1 netmask 0xff000000 broadcast 127.255.255.255
        inet6 ::1/0
         tcp_sendspace 65536 tcp_recvspace 65536
#


 george16 回复于:2006-05-16 13:04:52

Try this

AIX uses the file /etc/filesystems instead of /etc/fstab. A sample entry, based on the example in Section 4, looks like this: 

#smit mknfsmnt

        dev             = "/d"
        vfs             = nfs
        nodename        =your IP address
        mount           = true
        options         = bg,hard,intr,rsize=1024,wsize=1024,vers=2,proto=udp (This option you have to check it by manul, just try it)
        account         = false


 george16 回复于:2006-05-16 13:08:45

是linux EXPORT马?如果是

可以试一试这个

怎样在AIX中Mount Redhat Linux上的nfs文件系统?

环境  任何机型,操作系统 AIX 4.3.3,Redhat 6.2 
问题  当在R6上mount redhat linux的nfs时,系统报错:
1831-008: Operation not permitted 
解答 当在R6上mount redhat linux的nfs时,系统报错:
1831-008: Operation not permitted


用nfso命令修改参数nfs_use_reserved_ports,如下:
#nfso -o nfs_use_reserved_ports=1 
缺省时AIX的参数nfs_use_reserved_ports是0,而linux
在响应客户的mount请求时,需要使用reserved_ports。
修改参数后,故障排除。


 symencheng 回复于:2006-06-02 13:23:27

谢谢兄弟,问题按照你的方法搞定啦。

:P


 ignu 回复于:2006-11-24 15:52:49

不错。


 nanbei 回复于:2007-02-28 21:32:54

IBM 580 服务器,在一次关机后,经过几天后重新启动服务器时发现报错: 报错代码是:(0517   mount  /usr )  出现死机现象,后来用光盘启动通过修改文件系统后还是无法启动的)......
请大家帮忙想一想办法的......:em02:




原文链接:http://bbs.chinaunix.net/viewthread.php?tid=755552
转载请注明作者名及原文出处