博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
NFS服务的开启
阅读量:2052 次
发布时间:2019-04-28

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

NFS服务的开启

Ubuntu开启NFS服务


问题

  • 当查找不到一台服务的NFS服务的时候如下状况的时候
[root@localhost ~]# showmount -e 192.168.0.175clnt_create: RPC: Port mapper failure - Unable to receive: errno 113 (No route to host)

解决方案

可以执行以下命令:

  • 关闭防火墙
systemctl stop firewalld && systemctl disable firewalld
  • 启动RPC
/etc/init.d/rpcbind restart
  • 启动NFS
/etc/init.d/nfs-kernel-server restart

Centos开启NFS服务


/bin/systemctl start rpcbind.service/bin/systemctl start nfs.service

转载地址:http://wuylf.baihongyu.com/

你可能感兴趣的文章
(PAT 1115) Counting Nodes in a BST (二叉查找树-统计指定层元素个数)
查看>>
(PAT 1143) Lowest Common Ancestor (二叉查找树的LCA)
查看>>
(PAT 1061) Dating (字符串处理)
查看>>
(PAT 1118) Birds in Forest (并查集)
查看>>
数据结构 拓扑排序
查看>>
(PAT 1040) Longest Symmetric String (DP-最长回文子串)
查看>>
(PAT 1145) Hashing - Average Search Time (哈希表冲突处理)
查看>>
(1129) Recommendation System 排序
查看>>
PAT1090 Highest Price in Supply Chain 树DFS
查看>>
(PAT 1096) Consecutive Factors (质因子分解)
查看>>
(PAT 1019) General Palindromic Number (进制转换)
查看>>
(PAT 1073) Scientific Notation (字符串模拟题)
查看>>
(PAT 1080) Graduate Admission (排序)
查看>>
Play on Words UVA - 10129 (欧拉路径)
查看>>
mininet+floodlight搭建sdn环境并创建简答topo
查看>>
【UML】《Theach yourself uml in 24hours》——hour2&hour3
查看>>
【linux】nohup和&的作用
查看>>
【UML】《Theach yourself uml in 24hours》——hour4
查看>>
Set、WeakSet、Map以及WeakMap结构基本知识点
查看>>
【NLP学习笔记】(一)Gensim基本使用方法
查看>>