AIX中Mount Redhat Linux上的nfs檔案系統

JasLi發表於2007-06-05

環境: AIX5.3,Redhat ES3
問題: 當在AIX5L上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。

修改引數後,故障排除。

[@more@]

AIX MOUNT命令:
mount 129.184.13.164:/oracle-AIX /mnt/ora10g

=============================================

AIX 配置NFS記要(http://jasli.itpub.net/admin.php?op=editPost&postId=292536

1。修改的/etc/hosts檔案,新增:(p630為NFS客戶端主機名)

192.168.9.106 p630

2.修改或者新增/etc/exports檔案,如下內容:

/testnfs -rw,root=p630,access=p630

3。按要求建立/testnfs檔案系統如下,並Mount檔案系統:mount /testnfs

/dev/lv02 65536 63432 4% 19 1% /testnfs

4。重啟NFS服務:

#/usr/sbin/mknfs '-N'

5。export all:

#exportfs -a

6。客戶端修改/etc/hosts檔案:

192.168.0.237 demo

7。建立mount目錄/demotest,並mount:

mkdir /demotest

mount demo:/testnfs /demotest

df -k

demo:/testnfs 65536 63432 4% 19 1% /demotest

完成。

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/60325/viewspace-917481/,如需轉載,請註明出處,否則將追究法律責任。

相關文章