Linux使用nfs设置共享文件夹

Linux使用nfs设置共享文件夹

  • 操作系统
  • 服务端配置
  • 客户端配置
  • 参考

操作系统

Centos6.5,Centos6.5默认安装了nfs-utils和rpcbind

服务端配置

1、安装nfs服务(已安装请忽略)

   yum -y install nfs-utils rpcbind

2、配置:/etc/exports

	格式:【<输出目录> [客户端1 选项(访问权限,用户映射,其他)] [客户端2 选项(访问权限,用户映射,其他)]】

	/home/soft/share 192.168.8.3(insecure,rw,no_root_squash,no_all_squash,sync)

3、启动服务并设置开机自启

	service rpcbind start
	chkconfig --level 2345 rpcbind on
	chkconfig --level 2345 nfs on

客户端配置

1、安装nfs服务(已安装请忽略)

   yum -y install nfs-utils rpcbind

2、创建目录

 mkdir /home/soft/share

3、挂载

格式:mount -t nfs 被共享的ip:被共享的目录 挂载目标

mount -t nfs 192.168.8.4:/home/soft/share /home/soft/share

4、开机自动挂载

vim /etc/fstab

192.168.8.4:/home/soft/share /home/soft/share nfs defaults 0 0

参考

https://www.cnblogs.com/dinolin-630/p/7765283.html

你可能感兴趣的:(Linux)