码迷,mamicode.com
首页 > 其他好文 > 详细

centos安装部署nfs

时间:2019-09-09 16:27:09      阅读:114      评论:0      收藏:0      [点我收藏+]

标签:systemctl   dir   没有   tar   def   设置   bind   共享   localhost   

服务端安装
sudo yum install -y nfs-utils
sudo systemctl enable rpcbind
sudo systemctl start rpcbind
sudo systemctl enable nfs
sudo systemctl start nfs

配置共享目录

mkdir /data/nfs

配置 /etc/exports,添加如下内容

/data/nfs     *(rw,sync,no_root_squash,no_all_squash)
/data/nfs: 共享目录位置。
*: 客户端 IP(18.8.1.0/30) 范围,* 代表所有,即没有限制。
rw: 权限设置,可读可写。
sync: 同步共享目录。
no_root_squash: 可以使用 root 授权。
no_all_squash: 可以使用普通用户授权。

重启nfs服务。检查本地共享目录

showmount -e localhost

客户端安装

sudo yum install -y nfs-utils
sudo systemctl enable rpcbind
sudo systemctl start rpcbind

创建共享目录

mkdir /data/nfs

挂载目录

sudo mount -t nfs 18.8.1.1:/data/nfs /data/nfs

添加自动挂载

sudo vi /etc/fstab

添加一行

18.8.1.1:/data/nfs /data/nfs nfs defaults 0 0

centos安装部署nfs

标签:systemctl   dir   没有   tar   def   设置   bind   共享   localhost   

原文地址:https://blog.51cto.com/13504746/2436783

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!