README 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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. $ PREFIX=/usr/share make install
  7. (dependencies might be missing from https://github.com/cloudera/hue#development-prerequisites)
  8. ## Configure Solr
  9. Edit conf/hue.ini:
  10. [search]
  11. # URL of the Solr Server
  12. ##solr_url=http://localhost:1978/solr/
  13. ## Run!
  14. $ /usr/share/hue/build/env/bin/supervisor
  15. Go to http://localhost:8888/
  16. Please report feeback!
  17. ## For enabling file download
  18. ## Configure Hadoop
  19. Edit hdfs-site.xml:
  20. <property>
  21. <name>dfs.webhdfs.enable</name>
  22. <value>true</value>
  23. </property>
  24. ## Optional
  25. ## Install plug-ins
  26. $ cd /usr/lib/hadoop-0.20-mapreduce/lib
  27. $ ln -s /usr/share/hue/desktop/libs/hadoop/java-lib/hue*jar
  28. Edit mapred-site.xml:
  29. <property>
  30. <name>mapred.jobtracker.plugins</name>
  31. <value>org.apache.hadoop.thriftfs.ThriftJobTrackerPlugin</value>
  32. <description>Comma-separated list of jobtracker plug-ins to be activated.
  33. </description>
  34. </property>