在A主机,新建共享文件夹
mk -m 777 /home/oracle/xxx/Xshare
修改/etc/exports文件,添加一条 /home/oracle/xxx/Xshare *(rw), *为全部IP可以访问,也可以指定IP
重启nfs服务:service nfs restart
在B主机
建立对应挂载文件夹
mk -m 777 /home/oracle/xxx/Xshare
挂载
mount -t nfs 10.10.1.101: /home/oracle/xxx/Xshare /home/oracle/xxx/Xshare
即可
遇到问题:
mount -t nfs 10.10.1.216:/home/oracle/101DataBAK /home/oracle/xxx/216Dir/
mount: mount to NFS server '10.10.1.216' failed: timed out (retrying).
解决办法:
[root@hnmtvcrm ~]# mount -t nfs 10.10.1.216:/home/oracle/101DataBAK /home/oracle/xxx/216Dir/ -o nolock,proto=tcp,nfsvers=3
[root@hnmtvcrm ~]# mount -t nfs 10.10.1.106:/home/oracle/xxx/Xshare/test101 /home/oracle/xxx/test106/
mount: mount to NFS server '10.10.1.106' failed: RPC Error: Program not registered.
解决办法
B(106) 重启nfs服务 serice nfs restart