首页 > 代码库 > WIN10下安装HBASE教程

WIN10下安装HBASE教程

工作需要,现在开始做大数据开发了,通过下面的配置步骤,你可以在win10系统中,部署出一套hadoop+hbase,便于单机测试调试开发。

准备资料:

1.

hadoop-2.7.2:

https://mirrors.tuna.tsinghua.edu.cn/apache/hadoop/common/stable/ 

2.

hadoop-common-2.2.0-bin-master:

https://github.com/srccodes/hadoop-common-2.2.0-bin/archive/master.zip

3.

hbase-1.2.3:

http://apache.fayea.com/hbase/stable/

4.

jdk1.8:

http://dl-t1.wmzhe.com/30/30118/jdk_1.8.0.0_64.exe

 

以上压缩包用winrar解压失败的话,请下载安装 Cygwin 然后用它下的命令提示符下输入:tar  -zxvf hadoop-2.7.2.tar.gz

 

 

将下载好的3个压缩包分别解压缩到

D:\HBase\hadoop-2.7.2

D:\HBase\hadoop-common-2.2.0-bin-master

D:\HBase\hbase-1.2.3

复制 D:\HBase\hadoop-common-2.2.0-bin-master\bin 的7个文件(注意:只复制这7个)  复制到 D:\HBase\hadoop-2.7.2\bin

hadoop.dll、hadoop.exp、hadoop.lib、hadoop.pdb、libwinutils.lib、winutils.exe、winutils.pdb

 

配置Hadoop:

D:\HBase\hadoop-2.7.2\etc\hadoop

 hadoop-env.cmd 内容如下:

@echo off@rem Licensed to the Apache Software Foundation (ASF) under one or more@rem contributor license agreements.  See the NOTICE file distributed with@rem this work for additional information regarding copyright ownership.@rem The ASF licenses this file to You under the Apache License, Version 2.0@rem (the "License"); you may not use this file except in compliance with@rem the License.  You may obtain a copy of the License at@rem@rem     http://www.apache.org/licenses/LICENSE-2.0@rem@rem Unless required by applicable law or agreed to in writing, software@rem distributed under the License is distributed on an "AS IS" BASIS,@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.@rem See the License for the specific language governing permissions and@rem limitations under the License.@rem Set Hadoop-specific environment variables here.@rem The only required environment variable is JAVA_HOME.  All others are@rem optional.  When running a distributed configuration it is best to@rem set JAVA_HOME in this file, so that it is correctly defined on@rem remote nodes.@rem The java implementation to use.  Required.set JAVA_HOME=%JAVA_HOME%@rem The jsvc implementation to use. Jsvc is required to run secure datanodes.@rem set JSVC_HOME=%JSVC_HOME%@rem set HADOOP_CONF_DIR=@rem Extra Java CLASSPATH elements.  Automatically insert capacity-scheduler.if exist %HADOOP_HOME%\contrib\capacity-scheduler (  if not defined HADOOP_CLASSPATH (    set HADOOP_CLASSPATH=%HADOOP_HOME%\contrib\capacity-scheduler\*.jar  ) else (    set HADOOP_CLASSPATH=%HADOOP_CLASSPATH%;%HADOOP_HOME%\contrib\capacity-scheduler\*.jar  ))@rem The maximum amount of heap to use, in MB. Default is 1000.@rem set HADOOP_HEAPSIZE=@rem set HADOOP_NAMENODE_INIT_HEAPSIZE=""@rem Extra Java runtime options.  Empty by default.@rem set HADOOP_OPTS=%HADOOP_OPTS% -Djava.net.preferIPv4Stack=true@rem Command specific options appended to HADOOP_OPTS when specifiedif not defined HADOOP_SECURITY_LOGGER (  set HADOOP_SECURITY_LOGGER=INFO,RFAS)if not defined HDFS_AUDIT_LOGGER (  set HDFS_AUDIT_LOGGER=INFO,NullAppender)set HADOOP_NAMENODE_OPTS=-Dhadoop.security.logger=%HADOOP_SECURITY_LOGGER% -Dhdfs.audit.logger=%HDFS_AUDIT_LOGGER% %HADOOP_NAMENODE_OPTS%set HADOOP_DATANODE_OPTS=-Dhadoop.security.logger=ERROR,RFAS %HADOOP_DATANODE_OPTS%set HADOOP_SECONDARYNAMENODE_OPTS=-Dhadoop.security.logger=%HADOOP_SECURITY_LOGGER% -Dhdfs.audit.logger=%HDFS_AUDIT_LOGGER% %HADOOP_SECONDARYNAMENODE_OPTS%@rem The following applies to multiple commands (fs, dfs, fsck, distcp etc)set HADOOP_CLIENT_OPTS=-Xmx512m %HADOOP_CLIENT_OPTS%@rem set HADOOP_JAVA_PLATFORM_OPTS="-XX:-UsePerfData %HADOOP_JAVA_PLATFORM_OPTS%"@rem On secure datanodes, user to run the datanode as after dropping privilegesset HADOOP_SECURE_DN_USER=%HADOOP_SECURE_DN_USER%@rem Where log files are stored.  %HADOOP_HOME%/logs by default.@rem set HADOOP_LOG_DIR=%HADOOP_LOG_DIR%\%USERNAME%@rem Where log files are stored in the secure data environment.set HADOOP_SECURE_DN_LOG_DIR=%HADOOP_LOG_DIR%\%HADOOP_HDFS_USER%@rem The directory where pid files are stored. /tmp by default.@rem NOTE: this should be set to a directory that can only be written to by @rem       the user that will run the hadoop daemons.  Otherwise there is the@rem       potential for a symlink attack.set HADOOP_PID_DIR=%HADOOP_PID_DIR%set HADOOP_SECURE_DN_PID_DIR=%HADOOP_PID_DIR%@rem A string representing this instance of hadoop. %USERNAME% by default.set HADOOP_IDENT_STRING=%USERNAME%set JAVA_HOME=D:\Java\jdk1.8.0_31set HADOOP_HOME=D:\HBase\hadoop-2.7.2set HADOOP_PREFIX=D:\HBase\hadoop-2.7.2set HADOOP_CONF_DIR=%HADOOP_PREFIX%\etc\hadoopset YARN_CONF_DIR=%HADOOP_CONF_DIR%set PATH=%PATH%;%HADOOP_PREFIX%\bin

  

core-site.xml 内容如下:

<?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet type="text/xsl" href="http://www.mamicode.com/configuration.xsl"?><!--  Licensed under the Apache License, Version 2.0 (the "License");  you may not use this file except in compliance with the License.  You may obtain a copy of the License at    http://www.apache.org/licenses/LICENSE-2.0  Unless required by applicable law or agreed to in writing, software  distributed under the License is distributed on an "AS IS" BASIS,  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  See the License for the specific language governing permissions and  limitations under the License. See accompanying LICENSE file.--><!-- Put site-specific property overrides in this file. --><configuration>	<property>		<name>fs.default.name</name>		<value>hdfs://0.0.0.0:19000</value>	</property></configuration>

   hdfs-site.xml 内容如下:

<?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet type="text/xsl" href="http://www.mamicode.com/configuration.xsl"?><!--  Licensed under the Apache License, Version 2.0 (the "License");  you may not use this file except in compliance with the License.  You may obtain a copy of the License at    http://www.apache.org/licenses/LICENSE-2.0  Unless required by applicable law or agreed to in writing, software  distributed under the License is distributed on an "AS IS" BASIS,  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  See the License for the specific language governing permissions and  limitations under the License. See accompanying LICENSE file.--><!-- Put site-specific property overrides in this file. --><configuration>	<property>		<name>fs.default.name</name>		<value>hdfs://0.0.0.0:19000</value>	</property></configuration>

  创建mapred-site.xml 内容如下:中文名字处换成阁下的WINDOWS当前登录账户名

<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="http://www.mamicode.com/configuration.xsl"?><configuration>  <property>      <name>mapreduce.job.user.name</name>      <value>冯明刚</value>  </property>  <property>      <name>mapreduce.framework.name</name>      <value>yarn</value>  </property>  <property>      <name>yarn.apps.stagingDir</name>      <value>/user/冯明刚/staging</value>  </property>  <property>      <name>mapreduce.jobtracker.address</name>      <value>local</value>  </property></configuration>

  

 yarn-site.xml 内容如下:
<?xml version="1.0"?><configuration>  <property>      <name>yarn.server.resourcemanager.address</name>      <value>0.0.0.0:8020</value>  </property>  <property>      <name>yarn.server.resourcemanager.application.expiry.interval</name>      <value>60000</value>     </property>  <property>      <name>yarn.server.nodemanager.address</name>      <value>0.0.0.0:45454</value>    </property>   <property>      <name>yarn.nodemanager.aux-services</name>      <value>mapreduce_shuffle</value>  </property>  <property>      <name>yarn.nodemanager.aux-services.mapreduce.shuffle.class</name>      <value>org.apache.hadoop.mapred.ShuffleHandler</value>  </property>     <property>      <name>yarn.server.nodemanager.remote-app-log-dir</name>      <value>/app-logs</value>     </property>  <property>      <name>yarn.nodemanager.log-dirs</name>      <value>/dep/logs/userlogs</value>  </property>  <property>      <name>yarn.server.mapreduce-appmanager.attempt-listener.bindAddress</name>      <value>0.0.0.0</value>     </property>  <property>      <name>yarn.server.mapreduce-appmanager.client-service.bindAddress</name>      <value>0.0.0.0</value>  </property>  <property>      <name>yarn.log-aggregation-enable</name>      <value>true</value>  </property>  <property>      <name>yarn.log-aggregation.retain-seconds</name>      <value>-1</value>     </property>  <property>      <name>yarn.application.classpath</name>      <value>%HADOOP_CONF_DIR%,%HADOOP_COMMON_HOME%/share/hadoop/common/*,%HADOOP_COMMON_HOME%/share/hadoop/common/lib/*,%HADOOP_HDFS_HOME%/share/hadoop/hdfs/*,%HADOOP_HDFS_HOME%/share/hadoop/hdfs/lib/*,%HADOOP_MAPRED_HOME%/share/hadoop/mapreduce/*,%HADOOP_MAPRED_HOME%/share/hadoop/mapreduce/lib/*,%HADOOP_YARN_HOME%/share/hadoop/yarn/*,%HADOOP_YARN_HOME%/share/hadoop/yarn/lib/*</value>     </property> </configuration>

  

 

待续。。。 剩下HBASE配置和如何启动关闭操作

 

WIN10下安装HBASE教程