Last active
January 24, 2018 17:48
-
-
Save mccun934/424daee4f2edb7c6850fc25ffb6e3346 to your computer and use it in GitHub Desktop.
Upgrade just candlepin
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1) stop services: | |
# katello-service stop | |
# systemctl start postgresql | |
2) Upgrade RPMs | |
# yum update candlepin candlepin-tomcat candlepin-selinux | |
3) Update the candlepin database: | |
# CP_DBPASS=`grep jpa.config.hibernate.connection.password /etc/candlepin/candlepin.conf | awk -F= '{print $2}'` | |
# /usr/share/candlepin/cpdb --update --password $CP_DBPASS | |
4) restart services: | |
# katello-service start | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment