mysqldump -u root -p cloud | bzip2 > cloud_backup.sql.bz2
mysql -u cloud -p cloud
select id,name,unique_name,type from disk_offering;
# update disk_offering set unique_name = NULL where id = 10;
update disk_offering set unique_name = 'Cloud.com-ConsoleProxy' where id = 16;
service cloudstack-management restart