はじめに
何気なく RHEL と AIX 間で、NFS マウントをしようとしたら引っかったので備忘録で記載します。
解決法
下記のTechnote に解決法の記載がありました。
「-o nfsver=3 を設定する」、または、「AIX を NFSv4 で構成」します。
There are two ways to resolve the problem.
- Add the option -o nfsvers=3 to the mount command on Linux.
- Configure AIX to support NFSv4.
AIX はデフォルトで NFS Client v3 を使用しています。
・ネットワーク・ファイルシステム
https://www.ibm.com/docs/ja/aix/7.2?topic=management-network-file-system
NFS クライアントは、デフォルトで NFS バージョン 3 プロトコルを使用します。
環境
・RHEL 8.4
・AIX 7.2 TL5 (対象フォルダは export 済み)
失敗例
RHEL からマウント・コマンドを実施
[root@RHEL84_test ~]# mount -t nfs -o rw,sync aix72_test:/aixtest /RHELtest
mount.nfs: Remote I/O error
成功例
RHEL からマウント・コマンドを実施(-o nfsvers=3 を付与)
[root@RHEL84_test ~]# mount -t nfs -o rw,sync -o nfsvers=3 aix72_test:/aixtest /RHELtest
以上です。