| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- Instructions to install the tarball release of Hue are available
- in the manual from the website where you downloaded Hue.
- If you're impatient, these are the key steps. Please check the full manual
- for more details.
- ## Install
- $ HADOOP_HOME=/usr/lib/hadoop-0.20 PREFIX=/usr/local make install
- ## Install plug-ins
- $ cd /usr/lib/hadoop/lib
- $ ln -s /usr/local/hue/desktop/libs/hadoop/java-lib/hue*jar
- ## Configure Hadoop
- Edit hdfs-site.xml:
- <property>
- <name>dfs.namenode.plugins</name>
- <value>org.apache.hadoop.thriftfs.NamenodePlugin</value>
- <description>Comma-separated list of namenode plug-ins to be activated.
- </description>
- </property>
- <property>
- <name>dfs.datanode.plugins</name>
- <value>org.apache.hadoop.thriftfs.DatanodePlugin</value>
- <description>Comma-separated list of datanode plug-ins to be activated.
- </description>
- </property>
- Edit mapred-site.xml:
- <property>
- <name>mapred.jobtracker.plugins</name>
- <value>org.apache.hadoop.thriftfs.ThriftJobTrackerPlugin</value>
- <description>Comma-separated list of jobtracker plug-ins to be activated.
- </description>
- </property>
- ## Run!
- $ /usr/local/hue/build/env/bin/supervisor
|