NFS网络文件系统方案

1,关闭防火墙和selinux
iptables -F
systemctl stop firewalld
systemctl disable firewalld
setenforce 0

服务器系统    名字                     IP地址
                    nfs-server          192.168.30.21
                    nfs-client1         192.168.30.22
                    nfs-client2          192.168.30.23
部署NFS服务软件包
hostname nfs-server
bash

rpm -q nfs-utils rpcbind
systemctl restart rpcbind
systemctl restart nfs

查看111端口进程占用
lsof -i :111
rpcinfo -p localhost

配置NFS服务器
ls -l /etc/exports

/etc/exports文件配置格式
mkdir /data
vim /etc/exports
/data 192.168.30.*(rw,sync)
systemctl restart nfs
touch /data/crushlinux
showmount -e 127.0.0.1

客户端配置
hostname nfs-client1
bash


rpm -q rpcbind
systemctl restart rpcbind
showmount -e 192.168.30.21
mount -t nfs 192.168.30.21:/data /mnt/
df -Th /mnt
ls /mnt
touch /mnt/test
无法写入因为权限的问题,解决方法
回到192.168.30.21的机器上
cat /var/lib/nfs/etab
cat /etc/exports
ls -ld /data
grep 65534 /etc/passwd
chown -R nfsnobody /data
ls -ld /data
回到客户端创建
touch /mnt/test
ls /mnt
tail -5 /etc/rc.local

#启动rpcbind
systemctl start rpcbind
#挂载nfs /data
/binmount -t nfs 192.168.30.21:/data /mnt
















转载于:https://www.cnblogs.com/zc1741845455/p/10921273.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值