Linux NFS 安装部署
1、NFS client:
--安装nfs客户端软件包
yum install nfs-utils rpcbind
systemctl start rpcbind.service
systemctl enable rpcbind.service
--显示NFS服务器上共享的资源目录
showmount -e server_ip
--挂载共享目录
mkdir /nfsclient
mount -t nfs server_ip:/data /nfsclient
--开机自动挂载
/etc/fstab
server_ip:/data /nfsclient nfs defaults 0 0
--准对oracle rman 备份挂载选项
/etc/fstab
server_ip:/data /backup nfs rw,bg,hard,nointr,rsize=32768,wsize=32768,tcp,actimeo=0,vers=3,timeo=600 0 0
2、nfs server:
--安装nfs服务器软件包
yum install nfs-utils rpcbind
systemctl start rpcbind.service
systemctl enable rpcbind.service
systemctl start nfs-server.service
systemctl enable nfs-server.service
--共享文件、权限分配
/etc/exports
/data client_ip1(rw,sync,all_squash,anonuid=1001,anongid=1001,fsid=0)
/data client_ip2(rw,sync,no_root_squash)
--显示NFS服务器上的共享
exportfs -v
本文来自博客园,作者:踏雪无痕2017,转载请注明原文链接:https://www.cnblogs.com/oradba/p/18266211