Skip to content
This repository has been archived by the owner on Jun 3, 2020. It is now read-only.

HowToUpgrade

Michael Mraka edited this page Mar 18, 2020 · 12 revisions

Spacewalk Upgrade Instructions

These are upgrade instructions for upgrading Spacewalk 2.9 to Spacewalk 2.10

These upgrade instruction apply to Spacewalk installations meeting the following criteria:

  • Spacewalk 2.9 running on Red Hat Enterprise Linux/CentOS/Scientific Linux 6/7 Server.
  • Your Spacewalk uses one of Oracle 10g (including XE) / Oracle 11g / PostgreSQL 8.4+ as a database backend.
  • In most cases it's possible to perform Package upgrade and Schema upgrade steps from any previous version to the latest one directly (e.g. from 1.6 to 2.6). However in the transition from 2.6 to 2.7, there are package dependency changes that must be accounted for. Make sure you have a valid backup in case anything will go wrong.

Archive of older upgrade instructions

  • Spacewalk 2.8 to 2.9 upgrade instructions, are available at HowToUpgrade29
  • Spacewalk 2.7 to 2.8 upgrade instructions, are available at HowToUpgrade28
  • Spacewalk 2.6 to 2.7 upgrade instructions, are available at HowToUpgrade27
  • Spacewalk 2.5 to 2.6 upgrade instructions, are available at HowToUpgrade26
  • Spacewalk 2.4 to 2.5 upgrade instructions, are available at HowToUpgrade25
  • Spacewalk 2.3 to 2.4 upgrade instructions, are available at HowToUpgrade24
  • Spacewalk 2.2 to 2.3 upgrade instructions, are available at HowToUpgrade23
  • Spacewalk 2.1 to 2.2 upgrade instructions, are available at HowToUpgrade22
  • Spacewalk 2.0 to 2.1 upgrade instructions, are available at HowToUpgrade21
  • Spacewalk 1.9 to 2.0 upgrade instructions, are available at HowToUpgrade20
  • Spacewalk 1.8 to 1.9 upgrade instructions, are available at HowToUpgrade19
  • Spacewalk 1.7 to 1.8 upgrade instructions, are available at HowToUpgrade18
  • Spacewalk 1.6 to 1.7 upgrade instructions, are available at HowToUpgrade17
  • Spacewalk 1.5 to 1.6 upgrade instructions, are available at HowToUpgrade16

Assumptions

  • For RHEL, CentOS, or Scientific Linux, you have the base-OS and EPEL repositories enabled.
  • For RHEL, you have the appropriate 'Optional Server' channel enabled.
  • For Fedora, your Fedora yum repositories are setup properly.
  • You have set up your yum to point to Spacewalk 2.10 repository. For the repo setup specifics, see HowToInstall#setting-up-spacewalk-repo.

Database and configuration backup

  • For existing configuration files, create a backup of everything under /etc/sysconfig/rhn /etc/rhn and /etc/jabberd
  • Backup your SSL build directory, ordinarily /root/ssl-build
  • BACKUP YOUR DATABASE. For instructions on how to create a backup of your existing Spacewalk database consult either Oracle / PostgreSQL documentation or contact your DBA

Package upgrade

Lock versions

When running on Fedora, you may need to lock the versions of several third-party libraries prior to upgrading, due to changes in the Fedora repositories. Execute the following commands:

# dnf install python3-dnf-plugin*-versionlock
# echo 'quartz-1.8.4' >>/etc/dnf/plugins/versionlock.list

Remove conflicting packages

When running on RHEL6, Scientific Linux 6, CentOS 6, you need to remove certain packages formerly installed from jpackage repo which are not used anymore and cause dependency conflicts. Execute the following command:

# rpm -e --nodeps  axis-*-*.jpp5 jakarta-commons-logging-*-*.jpp5 jakarta-commons-digester-*-*jpp jakarta-commons-dbcp-*-*.jpp5 jakarta-commons-discovery-*-*.jpp5 java-cup-*-*.jpp5 junit-*-*.jpp5 wsdl4j-*-*.jpp5 xalan-j2-*-*.jpp5

All systems

Perform package upgrade using yum:

# yum upgrade

During the upgrade, you may notice messages printed to the terminal when installing oracle-instantclient-selinux and spacewalk-selinux. These messages are produced by restorecon and do not pose any harm.

Check any .rpmnew/.rpmsave files that were created during the upgrade for your configuration files and make sure changes to your configuration files are preserved while new content from the distribution files is carried over.

# yum install rpmconf
# rpmconf -a

Schema upgrade

Make sure your Spacewalk server is down:

# /usr/sbin/spacewalk-service status
# /usr/sbin/spacewalk-service stop

On a systemd supported system, reload the systemd manager configuration:

# systemctl daemon-reload

Do a backup of your database. (No, really - go do that. We'll wait.)

If you are running PostgreSQL database backend check whether you have created language pltclu:

su - postgres -c "PGPASSWORD=spacepw; createlang pltclu $(spacewalk-cfg-get db_name) ;"

If you are running Oracle database backend grant these rights to your database user:

Update spacewalk database user - replace with your database user name

# sqlplus 'sys/<password>@//localhost/XE as sysdba'
SQL> grant create table to <spacewalk>;
SQL> grant create trigger to <spacewalk>;
SQL> quit

Make sure your database server is running. Run spacewalk-schema-upgrade script to upgrade database schema:

# /usr/bin/spacewalk-schema-upgrade

Important notes:

  • The above command will inform you whether or not the schema upgrade was successful.
    • Log files from schema upgrade are stored in /var/log/spacewalk/schema-upgrade.
    • Should the schema upgrade fail, investigate, restore from backup, fix the cause (for example, if it failed because of insufficient space in tablespace, extend the tablespaces) and rerun spacewalk-schema-upgrade.

Upgrade of Spacewalk configuration

  1. Use spacewalk-setup to upgrade Spacewalk configuration.

If you are using the default database setup, run:

# spacewalk-setup --upgrade

If you are using an external database, then run

# spacewalk-setup --external-$DB --upgrade

where DB will be either oracle or postgresql, depending on what your external database is.

  1. Restore some of the custom values you might have set previously in /etc/rhn/rhn.conf from the backup of your configuration files, such as:
  • debug = 3
  • pam_auth_service = rhn-satellite

Restart Spacewalk

If you are running Spacewalk on Fedora run following command before starting Spacewalk services

systemctl daemon-reload

Then, start all Spacewalk services:

# /usr/sbin/spacewalk-service start

Known Issues

Tomcat on RHEL 6 fails to start

On RHEL6 tomcat may fail to restart with the following message in the /var/log/tomcat6/catalina.out:

SEVERE: Error deploying configuration descriptor rhn.xml
java.lang.IllegalStateException: ContainerBase.addChild: start: LifecycleException:  start: :  java.io.IOException: Failed to access resource /WEB-INF/lib/jta.jar

This issue is caused by yum which removed symlink /usr/share/java/jta.jar. To fix it run:

# ln -s geronimo-jta.jar /usr/share/java/jta.jar

And then restart tomcat6 again:

# service tomcat6 restart

Tomcat on RHEL 7 / CentOS 7 fails to start

On RHEL 7, Scientific Linux 7, CentOS 7, Tomcat package RHN may fail to start with the following message in /var/log/tomcat/localhost.yyyy-mm-dd:

spacewalk 2.9 Unsupported major.minor version 52.0 (unable to load class EDU.oswego.cs.dl.util.concurrent.Channel)

This issue may be caused by incorrect default Java version. Spacewalk 2.9 no longer requires Java 1.7:

# java -version
# alternatives --list

To fix, ensure that Java 1.8 is being used by default. If possible, consider uninstalling Java 1.7 altogether:

# yum install -y java-1.8.0-openjdk-devel
# yum erase java-1.7.0-openjdk java-1.7.0-openjdk-devel java-1.7.0-openjdk-headless

And then restart Spacewalk services.

Clone this wiki locally