| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- 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
- $ PREFIX=/usr/share make install
- (dependencies might be missing from https://github.com/cloudera/hue#development-prerequisites)
- ## Configure Solr
- Edit conf/hue.ini:
- [search]
- # URL of the Solr Server
- ##solr_url=http://localhost:1978/solr/
- ## Run!
- $ /usr/share/hue/build/env/bin/supervisor
- Go to http://localhost:8888/
- Please report feeback!
- ## For enabling file download
- ## Configure Hadoop
- Edit hdfs-site.xml:
- <property>
- <name>dfs.webhdfs.enable</name>
- <value>true</value>
- </property>
- ## Optional
- ## Install plug-ins
- $ cd /usr/lib/hadoop-0.20-mapreduce/lib
- $ ln -s /usr/share/hue/desktop/libs/hadoop/java-lib/hue*jar
- 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>
|