README 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. ==============================
  2. Hue - DataWarehouse SQL Editor
  3. ==============================
  4. Instructions to install the tarball release of Hue are available in the manual https://docs.gethue.com/administrator/installation/.
  5. If you're impatient, these are the key steps. Please check the full manual for more details and browse https://gethue.com.
  6. Install
  7. -------
  8. ## Install in any directory, e.g. /home/hue, /usr/share, /home/my_user
  9. PREFIX=/usr/share make install
  10. ## If you don't have the permissions, you will need to 'sudo' the command and
  11. ## make sure that the 'hue' user has write access to the 'logs' directory and 'desktop/desktop.db'.
  12. ## e.g. sudo chown -R hue:hue /usr/local/hue
  13. ## Run!
  14. ${PREFIX}/hue/build/env/bin/supervisor
  15. Upgrade
  16. -------
  17. # Stop the current Hue and do a database backup.
  18. # Install the new Hue to replace the old one and run the database migrations:
  19. ./build/env/bin/hue migrate
  20. Configure Hue
  21. -------------
  22. Point to other services: https://docs.gethue.com/administrator/configuration/
  23. Configure Hadoop
  24. ----------------
  25. ## Configure HDFS
  26. Edit hdfs-site.xml:
  27. <property>
  28. <name>dfs.webhdfs.enable</name>
  29. <value>true</value>
  30. </property>
  31. Problems?
  32. ---------
  33. Search or ask questions on the forum https://discourse.gethue.com/
  34. Some packages might be required during the 'make install': https://docs.gethue.com/administrator/installation/dependencies/