当前位置: > Linux服务器 > 环境配置 >

NFS配置

时间:2015-01-13 22:14来源:linux.it.net.cn 作者:IT网

 
  1. showmount -e hostname  

sudo apt-get install nfs-kernel-server

 

sudo apt-get install portmap

 

配置文件 /etc/exports

 


 
  1. /home/share 192.168.0.1/10(sync,ro) 192.168.1.20(rw,insecure,async,no_root_squash)  
  2. /home/public *(rw,sync)  
  3. /home/ftp www.baidu.com(ro,sync)  

 

启动服务器

 


 
  1. service portmap start  
  2. service nfs start  

显示共享目录状态

 

 


 
  1. showmount -ae hostname  

 

 

客户端

显示192.168.0.1的NFS提供的信息

 


 
  1. showmount -e hostname  

挂载NFS服务器中的目录

 

 


 
  1. mount 192.168.0.1:/home/public  /mnt/share  

查看挂载信息

 

 


 
  1. mount | grep nfs  

 

卸载

 


 
  1. umount /mnt/share  

CentOS7 NFS 配置

 


 
  1. 1.  edit /etc/exports  
  2. 2.  /home/media/samba *(insecure,sync,rw,no_root_squash)  
  3. 3.  Restart NFS server  
  4. a.  sudo systemctl restart nfs  
  5. 4.  testing   
  6. showmount -e 127.0.0.1  then appear the following info.  
  7. Export list for 127.0.0.1:  
  8. /home/media/samba *  
  9. 5.  mount  
  10. a.  sudo mount –t nfs nfsIP: /home/media/samba  /mnt  
  11.  

(责任编辑:IT)
------分隔线----------------------------