In this tutorial, we will show you how to install Spacewalk on CentOS 6. For those of you who didn’t know, Spacewalk is the package and system management solution for Redhat-derived Linux operating systems such as CentOS, Scientific Linux, and Fedora, by the spacewalk community. It is released under the GPLv2 license. It offers a more flexible way to do it. Spacewalk enables you to inventory your systems, manage configuration, act as a central repository for your systems, monitor your systems, and so on.
This article assumes you have at least basic knowledge of Linux, know how to use the shell, and most importantly, you host your site on your own VPS. The installation is quite simple. I will show you the step-by-step installation of Spacewalk on CentOS 6.
Prerequisites
- A server running one of the following operating systems: CentOS 6.
- It’s recommended that you use a fresh OS install to prevent any potential issues.
- SSH access to the server (or just open Terminal if you’re on a desktop).
- A
non-root sudo user
or access to theroot user
. We recommend acting as anon-root sudo user
, however, as you can harm your system if you’re not careful when acting as the root.
Install Spacewalk on CentOS 6
Step 1. First, you need to enable a repository on your system.
rpm -Uvh http://yum.spacewalkproject.org/2.0/RHEL/6/x86_64/spacewalk-repo-2.0-3.el6.noarch.rpm rpm -Uvh http://mirror.muntinternet.net/pub/epel/6/i386/epel-release-6-8.noarch.rpm wget http://www.jpackage.org/jpackage50.repo mv jpackage50.repo /etc/yum.repos.d/
Step 2. Install PostgreSQL database.
Spacewalk uses a database to store its primary data, it supports either PostgreSQL or Oracle RDBMS. In our case we are using PostgreSQL:
yum install spacewalk-setup-postgresql -y
Step 3. Install Spacewalk.
yum install spacewalk-postgresql -y
Step 4. Configure Spacewalk.
If you have installed an embedded database, then use it. It will ask you to enter the admin mail and organization details to generate the self-signed certificate for secured access:
[root@idroot.us ~]# spacewalk-setup --disconnected ** Database: Setting up database connection for PostgreSQL backend. ** Database: Installing the database: ** Database: This is a long process that is logged in: ** Database: /var/log/rhn/install_db.log *** Progress: # ** Database: Installation complete. ** Database: Populating database. *** Progress: #################################### * Setting up users and groups. ** GPG: Initializing GPG and importing key. ** GPG: Creating /root/.gnupg directory You must enter an email address. Admin Email Address? admin@idroot.us * Performing initial configuration. * Activating Spacewalk. ** Loading Spacewalk Certificate. ** Verifying certificate locally. ** Activating Spacewalk. * Enabling Monitoring. * Configuring apache SSL virtual host. Should setup configure apache's default ssl server for you (saves original ssl.conf) [Y]? ** /etc/httpd/conf.d/ssl.conf has been backed up to ssl.conf-swsave * Configuring tomcat. ** /etc/sysconfig//tomcat6 has been backed up to tomcat6-swsave ** /etc/tomcat6//server.xml has been backed up to server.xml-swsave ** /etc/tomcat6//web.xml has been backed up to web.xml-swsave * Configuring jabberd. * Creating SSL certificates. CA certificate password? Re-enter CA certificate password? Organization? idroot.us Organization Unit [server.idroot.us]? Email Address [admin@idroot.us]? City? jogja State? indonesia Country code (Examples: "US", "JP", "IN", or type "?" to see a list)? SI ** SSL: Generating CA certificate. ** SSL: Deploying CA certificate. ** SSL: Generating server certificate. ** SSL: Storing SSL certificates. * Deploying configuration files. * Update configuration in database. * Setting up Cobbler.. Processing /etc/cobbler/modules.conf `/etc/cobbler/modules.conf' -> `/etc/cobbler/modules.conf-swsave' Processing /etc/cobbler/settings `/etc/cobbler/settings' -> `/etc/cobbler/settings-swsave' Cobbler requires tftp and xinetd services be turned on for PXE provisioning functionality. Enable these services [Y]? * Restarting services. Installation complete. Visit https://server.idroot.us to create the Spacewalk administrator account.
On complete, start the SpaceWalk service:
/usr/sbin/spacewalk-service start chkconfig spacewalk on
Step 5. Accessing Spacewalk.
The spacewalk will be available on HTTPS port 443 by default. Open your favorite browser and navigate to https://hostname.yourdomain.com
and complete the required steps to finish the installation. If you are using a firewall, please open ports 80 and 443 to enable access to the control panel.
Congratulations! You have successfully installed Spacewalk. Thanks for using this tutorial for installing the Spacewalk server on CentOS 6 system. For additional help or useful information, we recommend you check the official Spacewalk website.