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

nfs

时间:2019-03-13 13:46:27      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:str   iptables   yum   使用   建议   portmap   共享目录   自动安装   vim   

centos6.5 下的nfs
1、查看系统是否已安装NFS
rpm -qa |grep nfs
2、若没有安装:
yum install nfs* -y

4、服务器端使用showmount命令查询NFS的共享状态
[root@zabbix-server centos1]# showmount -e
clnt_create: RPC: Unknown host

解决办法:
1 关掉iptables
2 vim /etc/hosts #添加IP 主机名

4、客户端使用showmount命令查询NFS的共享状态
格式:showmount -e NFS服务器IP

5、客户端挂载NFS服务器中的共享目录(建议客户端上来直接执行这一步)
格式:mount NFS服务器IP:共享目录 本地挂载点目录
mount -t nfs 192.168.221.140:/tmp /tmp/nfs

ubuntu 下的 nfs
1先安装
sudo apt-get install nfs-kernel-server
(安装nfs-kernel-server时,apt会自动安装nfs-common和portmap)

nfs

标签:str   iptables   yum   使用   建议   portmap   共享目录   自动安装   vim   

原文地址:https://blog.51cto.com/dengyong/2362289

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