README 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. Instructions to install the tarball release of Hue are available
  2. in the manual from the website where you downloaded Hue.
  3. If you're impatient, these are the key steps. Please check the full manual
  4. for more details.
  5. ## Install
  6. $ HADOOP_HOME=/path/to/hadoop-0.20.1+152 PREFIX=/path/to/install/into \
  7. make install
  8. ## Install plug-ins
  9. $ cd /usr/lib/hadoop/lib
  10. $ ln -s /usr/share/hue/desktop/libs/hadoop/java-lib/hue*jar
  11. ## Configure Hadoop
  12. Edit hdfs-site.xml:
  13. <property>
  14. <name>dfs.namenode.plugins</name>
  15. <value>org.apache.hadoop.thriftfs.NamenodePlugin</value>
  16. <description>Comma-separated list of namenode plug-ins to be activated.
  17. </description>
  18. </property>
  19. <property>
  20. <name>dfs.datanode.plugins</name>
  21. <value>org.apache.hadoop.thriftfs.DatanodePlugin</value>
  22. <description>Comma-separated list of datanode plug-ins to be activated.
  23. </description>
  24. </property>
  25. Edit mapred-site.xml:
  26. <property>
  27. <name>mapred.jobtracker.plugins</name>
  28. <value>org.apache.hadoop.thriftfs.ThriftJobTrackerPlugin</value>
  29. <description>Comma-separated list of jobtracker plug-ins to be activated.
  30. </description>
  31. </property>
  32. ## Run!
  33. $ /usr/share/hue/build/env/bin/supervisor