Questo contenuto non è disponibile nella lingua selezionata.
13.2. Performing Critical Updates to the Server
Red Hat releases critical updates to Red Hat Satellite in the form of an Erratum. The method used to provide errata updates to Red Hat Satellite is determined by whether it is in online or offline mode.
Important
Apache RPMs do not restart the
httpd
service upon installation. Conducting a full update of the Red Hat Satellite Server (such as with the command yum update
) might cause Apache to fail. To avoid this, make sure to restart the httpd
service after upgrading it.
13.2.1. Performing Critical Updates to an Online Server Copia collegamentoCollegamento copiato negli appunti!
Copia collegamentoCollegamento copiato negli appunti!
Updates to an online Satellite Server are done using the
yum
tool. All Satellite services, except for the database, are shut down during the update process.
Procedure 13.1. Perform Critical Updates to an Online Server
- Stop the Satellite services, except for the Satellite database.
rhn-satellite stop --exclude postgresql
# rhn-satellite stop --exclude postgresql
Copy to Clipboard Copied! Toggle word wrap Toggle overflow - Take a backup of the Satellite's database in a working state. Run the following command and replace the [FILENAME] option with the full path to the backup file that you want to create. This location needs to be writable by the PostgreSQL user:
db-control online-backup FILENAME
# db-control online-backup FILENAME
Copy to Clipboard Copied! Toggle word wrap Toggle overflow - Apply the updates:
yum update
# yum update
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Apply all Satellite updates. Updating the schema without updating the rest of the Satellite components can cause issues with the Satellite database. - Update the database schema using spacewalk-schema-upgrade command.
spacewalk-schema-upgrade
# spacewalk-schema-upgrade
Copy to Clipboard Copied! Toggle word wrap Toggle overflow This process will update your database schema to latest version. Thespacewalk-schema-upgrade
command will inform you with the results of the upgrade and the locations of schema upgrade log files. To double-check if the schema update completed successfully, run the following commands:rpm -q satellite-schema rhn-schema-version
# rpm -q satellite-schema # rhn-schema-version
Copy to Clipboard Copied! Toggle word wrap Toggle overflow If the output versions match, continue with the process. Otherwise restore the database withdb-control restore /path/to/backup
. - Restart Red Hat Satellite:
rhn-satellite start --exclude postgresql
# rhn-satellite start --exclude postgresql
Copy to Clipboard Copied! Toggle word wrap Toggle overflow - Clear the search index:
service rhn-search cleanindex
# service rhn-search cleanindex
Copy to Clipboard Copied! Toggle word wrap Toggle overflow It is recommended to clean the search index. The above command triggers the creation of a new one, which in most cases completes within thirty minutes to an hour. You might experience issues with the search features of Satellite 5 if you do not clean the index.