NFS用于网络共享存储,类似windows目录共享。配置NFS需在服务端和客户端都安装两个包(nfs-utils和rpcbind),安装nfs-utils时自动会把rpcbind一起安装上。安装命令:yuminstall-ynfs-utils1.NFS服务端配置1)编辑配置文件:vim/etc/exports写入内容:/home/192.168.16.0/24(rw,sy..
分类:
其他好文 时间:
2015-03-20 11:09:36
阅读次数:
151
参考实测服务端 centos7 192.168.1.129安装软件yum install nfs-utils portmapservice rpcbind start、service nfs start[root@localhost nfs]# cat /etc/exports #设置共享目录 添加...
分类:
其他好文 时间:
2015-03-07 13:54:22
阅读次数:
143
NFS的安装配置:centos 5 :yum install nfs-utils portmapcentos 6 :yum install nfs-utils rpcbindchkconfig --level 35 nfs onchkconfig --level 35 portmap/rpcbind...
分类:
其他好文 时间:
2015-02-03 14:47:05
阅读次数:
226
#yum -y install nfs-utils rpcbind#service rpcbind start#service nfs start#chkconfig --add rpcbind#chkconfig rpcbind on#chkconfig --add nfs#chkconfig n...
分类:
其他好文 时间:
2015-01-28 12:35:51
阅读次数:
204
#showmount-eclnt_create:RPC:Unknownhost检查/etc/hosts文件,将服务器IP解析至服务器主机名(另外需要注意是先重启rpcbind-再重启nfs服务)
分类:
其他好文 时间:
2015-01-06 18:13:48
阅读次数:
162
1、mount hdfs,关闭 linux自带的几个和 hdfs需要启动冲突的服务
参考:(1) service nfs stop and service rpcbind stop
(2) hadoop portmap or hadoop-daemon.sh start portmap
[hsu@server01 mnt]$ service portmap st...
分类:
其他好文 时间:
2015-01-04 12:10:28
阅读次数:
284
服务器端:
yum
-y install nfs* rpcbind
vi /etc/exports
/home/willserver 192.168.1.100(rw,sync,no_root_squash)
service rpcbind restart
service nfs restart
setenforce 0
客...
分类:
其他好文 时间:
2014-11-19 01:51:20
阅读次数:
138
在使用NFS时做磁盘挂载时要注意操作系统版本的变化,在CENTOS6.0之前,作为客户端要使用NFS文件,只需要安装PORTMAP和NFS,并且启动PORTMAP,这时使用netstat-tlnp发现111端口已经被占用tcp000.0.0.0:1110.0.0.0:*LISTEN1942/portmap.但是使用centos6.0之后的版本,就会发现使用N..
分类:
其他好文 时间:
2014-11-17 07:01:07
阅读次数:
230
一、环境介绍:服务器:CentOS6.4_64NFS_Server_IP服务器:CentOS6.4_64NFS_Client_IP二、安装:NFS的安装配置:CentOS5.X:yuminstallnfs-utilsportmapCentOS6.X(在CentOS6.3和CentOS6.4当中,portmap服务由rpcbind负责):yuminstallnfs-utilsrpcbind三、服务器端配置:1、创建..
分类:
其他好文 时间:
2014-11-05 00:38:03
阅读次数:
241
先上个规划图,自己随便画的,大家也随便看看192.168.1.119为nginx做反向代理并处理静态页面,apache处理动态页面,nfs共享网站家目录,svn代码管理。192.168.101为apache处理动态页面,挂载192.168.1.119的共享目录。192.168.1.96为mysql数据库,允许两台web服务的连接权限。..
分类:
Web程序 时间:
2014-10-31 19:14:13
阅读次数:
314