博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
centos7中nfs文件系统的使用
阅读量:6146 次
发布时间:2019-06-21

本文共 1952 字,大约阅读时间需要 6 分钟。

需求:file01:1.1.1.1(内网ip 172.20.103.212),file02:2.2.2.2(内网ip 172.20.103.211) 这两台机器的 /dev/mapper/myvg-mylv /data  这个盘都挂载到 video01 47.254.78.171, video02 47.254.83.81 这两台机器上即将file01和file02的/data目录都挂载到video01和video02上处理:file01和file02安装yum install -y exportfs nfs-utilsvideo01和video02安装yum install -y nfs-utils1.在file01和file02添加共享的文件夹和客户端可以访问的IP地址[root@eus_filmora_file01:~]# vim /etc/exports/data *(insecure,rw,no_root_squash,sync,anonuid=500,anongid=500)# 查看共享文件夹[root@eus_filmora_file01:/data]# exportfs -rvexporting *:/data  # 重启file01的NFS服务  systemctl restart nfs  2.目标机器video01和video02上创建挂载点并挂载# 客户端video01和video02操作mkdir /file01_nfsmkdir /file02_nfs# 挂载file01和file02mount -t nfs 172.20.103.212:/data /file01_nfs -o proto=tcp -o nolockmount -t nfs 172.20.103.211:/data /file02_nfs -o proto=tcp -o nolock# 卸载nfs[root@eus_filmora_video01:~]# umount 172.20.103.212:/data列出nfs服务端共享的目录:[root@eus_filmora_video01:/file02_nfs]# showmount -e 172.20.103.212Export list for 172.20.103.212:/data *[root@eus_filmora_video01:/file02_nfs]# showmount -e 172.20.103.211Export list for 172.20.103.211:/data *# 添加开机自动挂载[root@eus_filmora_video01:~]# cat /etc/rc.local #!/bin/bashmount -t nfs 172.20.103.212:/data /file01_nfs -o proto=tcp -o nolockmount -t nfs 172.20.103.211:/data /file02_nfs -o proto=tcp -o nolock报错:mount: wrong fs type, bad option, bad superblock on 10.25.177.47:/opt/data07,       missing codepage or helper program, or other error       (for several filesystems (e.g. nfs, cifs) you might       need a /sbin/mount.
helper program) In some cases useful info is found in syslog - try dmesg | tail or so.解决:yum install -y nfs-utils报错:mount.nfs: access denied by server while mounting 10.25.177.47:/data/voice 解决:nfs服务端 vim /etc/sysconfig/nfs修改如下:RPCNFSDARGS="-N 2 -N 3" ----->启用# Turn off v4 protocol supportRPCNFSDARGS="-N 4" ---->启用重启生效systemctl restart nfs

 

转载于:https://www.cnblogs.com/reblue520/p/9689587.html

你可能感兴趣的文章
csrf 跨站请求伪造相关以及django的中间件
查看>>
MySQL数据类型--与MySQL零距离接触2-11MySQL自动编号
查看>>
生日小助手源码运行的步骤
查看>>
Configuration python CGI in XAMPP in win-7
查看>>
bzoj 5006(洛谷 4547) [THUWC2017]Bipartite 随机二分图——期望DP
查看>>
CF 888E Maximum Subsequence——折半搜索
查看>>
欧几里德算法(辗转相除法)
查看>>
面试题1-----SVM和LR的异同
查看>>
MFC控件的SubclassDlgItem
查看>>
如何避免历史回退到登录页面
查看>>
《图解HTTP》1~53Page Web网络基础 HTTP协议 HTTP报文内的HTTP信息
查看>>
unix环境高级编程-高级IO(2)
查看>>
树莓派是如何免疫 Meltdown 和 Spectre 漏洞的
查看>>
雅虎瓦片地图切片问题
查看>>
HTML 邮件链接,超链接发邮件
查看>>
HDU 5524:Subtrees
查看>>
手机端userAgent
查看>>
pip安装Mysql-python报错EnvironmentError: mysql_config not found
查看>>
http协议组成(请求状态码)
查看>>
怎样成为一个高手观后感
查看>>