If you are unable to update the Cristie Virtual Appliance through the GUI, you can do this easily via the CLI or SSH without contacting support.
Simply SSH into your Virtual Appliance and run the following command(s)
Internet connected Virtual Appliance
yum update -y && restart_services
Offline Virtual Appliance
-
Copy the offline update to
/tmp
and extract theupdate.tar
with the following command:
mkdir -p /tmp/extracted && tar -C /tmp/extracted -xvf /tmp/update.tar
-
Create a new repository by creating the file
/etc/yum.repos.d/offline.repo
with the contents of:
[offline]
name=Cristie
baseurl=file:///tmp/extracted/
gpgcheck=0
enabled=0
-
Run the following command:
yum --disablerepo=* --enablerepo=offline update -y && restart_services
-
Once this has completed, make sure you remove the files created:
rm /etc/yum.repos.d/offline.repo
rm -r /tmp/extracted/
rm /tmp/update.tar