1.安装rpcbind ,nfs-tools
rpm -qa rpcbind nfs-tools
//检查是否已安装次工具
yum install rpcbind nfs-tools -y
yum install net-tools lsof -y
//安装端口检查和服务的工具
2.启动rpcbind
systemctl status rpcbind systemctl start rpcbind lsof -i :111 //查看rpcbind 111端口是否开启 netstat -tulnp | grep rpcbind //检查rpcbind 服务
2.1查看nfs服务向rpc注册的端口信息
rpcinfo -p localhost
此时nfs 还没开启,所以没太多的注册端口信息
检查rpcbind 是否开机启动
systemctl is-enabled rpcbind
3.开启nfs
systemclt start nfs
systemclt status nfs
3.1 创建共享目录
mkdir /data chown -R nfsnobody:nfsnobody /data
3.2 服务端nfs 配置
vim /etc/exprots /data 192.168.100.0/24(rw,sync) `ps:` 该ip 为nfs客户端的ip `exports -rv` 让配置生效 `cat /var/lib/nfs/etab` 查看nfs 开始的参数,包含默认的参数
3.3 测试服务端能否自己挂载
mkdir /data2 mount -t nfs 192.168.100.128:/data /data2 df -h
3.4查看nfs 服务器连接了哪些客户端
cat /var/lib/nfs/rmtab
4.客户端连接nfs服务端
yum install rpcbind nfs-tools -y
systemctl start rpcbind
yum install showmount -y
showmount -e 192.168.100.128
//查看客户端是否有权限连接nfs服务端机器
ps: 这里要提前关闭nfs 服务端的防火墙,该命令为
systemctl stop firewalld
4.1 挂载
mount -t nfs 192.168.100.128:/data /data2
查看 df -h
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网
猜你喜欢:- NFS网络文件存储系统搭建配置详解
- Nginx + Lua搭建文件上传下载服务
- Nginx + Lua搭建文件上传下载服务
- Nginx学习之如何搭建文件防盗链服务
- CentOS7搭建NFS文件共享存储服务
- Docker来搭建分布式文件系统FastDFS
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Programming Concurrency on the JVM
Venkat Subramaniam / The Pragmatic Bookshelf / 2011-6-1 / USD 35.00
Concurrency on the Java platform has evolved, from the synchronization model of JDK to software transactional memory (STM) and actor-based concurrency. This book is the first to show you all these con......一起来看看 《Programming Concurrency on the JVM》 这本书的介绍吧!