Centos 搭建 NFS
Posted jhc888007的笔记
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Centos 搭建 NFS相关的知识,希望对你有一定的参考价值。
- 服务端
yum -y install nfs-utils rpcbind
chkconfig nfs on
chkconfig rpcbind on
mkdir -p /tmp/share
chmod 600 /tmp/share
vim /etc/exports
/tmp/share 192.168.2.0/24(rw,no_root_squash,no_all_squash,sync)
/tmp/share *(rw,no_root_squash,no_all_squash,sync)
service rpcbind start
service nfs start
showmount -e localhost
- 客户端
yum -y install nfs-utils
mkdir -p /tmp/nfs
showmount -e 192.168.2.203
mount -t nfs 192.168.2.203:/data/share /tmp/nfs
df -h
参考文献:http://www.cnblogs.com/liuyisai/p/5992511.html
参考文献:http://blog.csdn.net/loyachen/article/details/51010688
以上是关于Centos 搭建 NFS的主要内容,如果未能解决你的问题,请参考以下文章