nfs服务器搭建

Server端:
1./etc/exports格式:
            目录                     选项            
例:共享/share目录给192.168.0.x的用户
/home      master16*(ro,root_squash)
/usr/local      master16*(ro,root_squash)

/opt/DATA master16*(ro,root_squash)

/opt/logs 10.10.83.144(rw,no_root_squash)

2.启动portmap服务:                                    
    service portmap start[restart]                     
3.启动NFS服务:
    service nfs start[restart]                         
Client端
1.启动portmap服务:                                    
    service portmap start[restart]                     
2.挂载服务器端的共享目录(假设服务器端192.168.0.1):   

mount -t nfs 192.168.0.1:/home  /home 

mount -t nfs192.168.0.1:/usr/local /usr/local

有多个目录就mount几次

umount -v /opt/test

高版本的内核可能是rpcbind,也无所谓,但需要安装nfs-utils通过yum install nfs-utils,还有yum install portmap

否则会报错:mount: wrong fs type, bad option, bad superblock on 10.10.79.194:/usr/local,
       missing codepage or helper program, or other error
       (for several filesystems (e.g. nfs, cifs) you might
       need a /sbin/mount.<type> helper program)
       In some cases useful info is found in syslog - try
       dmesg | tail  or so


你可能感兴趣的:(nfs服务器搭建)