AIX 做nfs文件系统

1。修改AIX的/etc/hosts文件,添加:(p630为NFS客户端主机名)

192.168.168.101   data1


2.修改或者添加/etc/exports文件,如下内容:

/dvd -ro,root=data1,access=data1


3。按要求建立/dvd 文件系统如下,并Mount文件系统

/usr/sbin/mount -rv cdrfs /dev/cd0 /dvd


4。重启NFS服务:

#/usr/sbin/mknfs '-N'

# mknfs '-N'
0513-029 The portmap Subsystem is already active.
Multiple instances are not supported.
Starting NFS services:
0513-029 The biod Subsystem is already active.
Multiple instances are not supported.
0513-029 The nfsd Subsystem is already active.
Multiple instances are not supported.
0513-029 The rpc.mountd Subsystem is already active.
Multiple instances are not supported.
0513-029 The rpc.statd Subsystem is already active.
Multiple instances are not supported.
0513-029 The rpc.lockd Subsystem is already active.
Multiple instances are not supported.
Completed NFS services.
5。export all:

#exportfs -a


6。客户端修改/etc/hosts文件:

192.168.168.102   data2


7。建立mount目录/dvd,并mount:

mkdir /dvd

mount data2:/dvd /dvd


完成。

你可能感兴趣的:(Access,AIX)