For HDP 2.1, you must use Hue 2.3.1 Hue 2.3.0 supports HDP 2.0.
Warning | |
---|---|
If you are using the embedded SQLite database, you must perform a backup of the database before you upgrade Hue to prevent data loss. To make a backup copy of the database, simply do a "dump" and redirect the results to a file. su $HUE_USER cd /var/lib/hue sqlite3 desktop.db .dump > ~/desktop.bak
|
Execute the following command on all Hue Server host machines:
For RHEL/CentOS/Oracle Linux:
yum upgrade hue hue-common hue-beeswax hue-hcatalog hue-pig hue-oozie
For SLES:
zypper up hue hue-common hue-beeswax hue-hcatalog hue-pig hue-oozie
Note | |
---|---|
If you are using the embedded SQLite database, remember to restore your database after upgrade. To restore the database from a backup, make sure the destination database is empty before copying. If necessary, rename or remove the current destination database. Then, copy your backup to the destination database. For example: su $HUE_USER cd /var/lib/hue mv desktop.db desktop.db.old sqlite3 desktop.db < ~/desktop.bak |