Help Topics
- Dedicated Servers
- Virtual Servers (VPS)
This article describes how to install updates on an unmanaged server. Maintaining an up-to-date server with the latest patches and fixes is one of the most important things you can do to make your server more secure.
yum updateThe previous command runs in interactive mode, which means you are asked at certain points during the update process whether or not you want to continue. To install updates without any user intervention, type the following command instead:
yum -y update* You can add this command to a cron job to automatically update your server at specific intervals.
apt-get update && apt-get upgradeThe previous command runs in interactive mode, which means you are asked at certain points during the update process whether or not you want to continue. To install updates without any user intervention, type the following command instead:
apt-get -y update && apt-get -y upgrade* You can add this command to a cron job to automatically update your server at specific intervals.
Please wait... it will take a second!