红联Linux门户
Linux帮助

Ubuntu配置NFS服务器与客户端

发布时间:2016-05-31 09:58:30来源:linux网站作者:CyborgLin

环境:Ubuntu16.04 64位 配置NFS服务器。


安装NFS服务器端:

apt-get install nfs-kernel-server 


下载完创建NFS的文件夹

mkdir /opt/nfs_folder 


配置服务器端配置:

vi /etc/exports 
在最后一行写入 
/opt/nfs_folder *(rw,sync,no_root_squash,no_subtree_check) 

////////////////////////////////////////////////////////// 
*:允许所有的网段访问,也可以使用具体的IP 
rw:挂接此目录的客户端对该共享目录具有读写权限 
sync:资料同步写入内存和硬盘 
no_root_squash:root用户具有对根目录的完全管理访问权限。 
no_subtree_check:不检查父目录的权限 

// 重启rpcbind 服务。nfs是一个RPC程序,使用它前,需要映射好端口,通过rpcbind 设定。 
/etc/init.d/rpcbind restart 

/etc/init.d/nfs-kernel-server restart //重启nfs服务 


服务器端就配置完成了。


客户端

apt-get install nfs-common //下载nfs命令 

挂载服务器共享文件夹到本地

mount -t nfs 192.168.30.129:/opt/nfs_folder /opt/myfolder/ 

就完成了,这时候你在本地/opt/myfolder/下创建test.php文件,在服务器/opt/nfs/nfs_folder/下看到test.php。


本文永久更新地址:http://www.linuxdiyf.com/linux/21102.html