<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>satellite server installation Archives - Linux Windows and android Tutorials</title>
	<atom:link href="https://www.osradar.com/tag/satellite-server-installation/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.osradar.com</link>
	<description>tutorials and news and Seurity</description>
	<lastBuildDate>Thu, 26 Dec 2019 23:21:21 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.8.12</generator>
	<item>
		<title>How To Install SpaceWalk on CentOS 7 / RHEL 7</title>
		<link>https://www.osradar.com/how-to-install-spacewalk-on-centos-7-rhel-7/</link>
					<comments>https://www.osradar.com/how-to-install-spacewalk-on-centos-7-rhel-7/#respond</comments>
		
		<dc:creator><![CDATA[sabi]]></dc:creator>
		<pubDate>Sat, 28 Dec 2019 10:10:00 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[how to install spacewalk on CentOS 7]]></category>
		<category><![CDATA[install spacewalk on RHEL 8]]></category>
		<category><![CDATA[satellite server installation]]></category>
		<category><![CDATA[spacewalk satellite server installation]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=17089</guid>

					<description><![CDATA[<p>Spacewalk is an open-source package &#38; system management solution developed by the spacewalk community for RedHat derivative distributions like CentOS, Scientific Linux and Fedora.We&#8217;ll cover the Installation of Spacewalk on our CentOS Server to manage &#38; view the updates for the system that are registered with Spacewalk. Features of Spacewalk: Systems Inventory Installtion &#38; Updating [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-install-spacewalk-on-centos-7-rhel-7/">How To Install SpaceWalk on CentOS 7 / RHEL 7</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>Spacewalk is an open-source package &amp; system management solution developed by the spacewalk community for RedHat derivative distributions like CentOS, Scientific Linux and Fedora.<br>We&#8217;ll cover the Installation of Spacewalk on our CentOS Server to manage &amp; view the updates for the system that are registered with Spacewalk. </p>



<h3><strong>Features of Spacewalk:</strong></h3>



<ul><li>Systems Inventory</li><li> Installtion &amp; Updating of System Packages</li><li> Kick-start Installation</li><li> Deploy and Manage the Configuration files from a single location</li><li> Start / Stop / Disable / Configure the guests.</li><li> Distribute the content using proxy across multiple Geographical location.</li></ul>



<h3><strong>Requirements:</strong></h3>



<ul><li>Outbound open ports 80,443</li><li> Inbound open ports 80,443,5222 (for pushing actions to client machines), 5269 (only for push actions to a Spacewalk proxy), 69 udp if you want to use tftp</li><li> Storage for DB: 250 KB per client + 500 KB per channel + 230 KB per package</li><li> Storage for packages (default /var/satellite): Depends upon the data you want to store. Red Hat recommend 6 GB per channel.</li><li> 2GB RAM minimum, 4GB recommended</li><li> Underlying (Spacewalk Server) OS is fully up-to-date.</li></ul>



<h3><strong>Environment:</strong></h3>



<p>Hostname: server.osradar.local<br>IP Address: 192.168.1.10<br>OS: CenOS Linux release 7.4.1708 (Core)</p>



<p class="has-text-color has-vivid-red-color"><strong>Note:Make sure the system is Configured with static IP Address.</strong></p>



<h3><strong>Pre-Requisite</strong></h3>



<p>Add repositories and Install the latest Spacewalk version:</p>



<pre class="wp-block-verse">yum install -y yum-plugin-tmprepo<br> yum install -y spacewalk-repo --tmprepo=https://copr-be.cloud.fedoraproject.org/results/%40spacewalkproject/spacewalk-2.9/epel-7-x86_64/repodata/repomd.xml --nogpg</pre>



<p>You can set up EPEL repo in CentOS 7 by </p>



<pre class="wp-block-verse">rpm -Uvh https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm</pre>



<p>Subscribe to Optional channels</p>



<pre class="wp-block-verse">subscription-manager repos --enable rhel-7-server-optional-rpms</pre>



<p>Your Spacewalk server should have a resolvable fully-qualified domain name (FQDN) like hostname.domain.com</p>



<p> edit <strong>/etc/hosts</strong> file.</p>



<pre class="wp-block-verse">vi /etc/hosts</pre>



<pre class="wp-block-verse">127.0.0.1   localhost localhost.localdomain localhost4 localhost4.localdomain4<br> ::1         localhost localhost.localdomain localhost6 localhost6.localdomain6<br> Your Spacewalk Server<br> 192.168.1.10 server.osradar.local server</pre>



<p>Modify it according to your own environment</p>



<p>Allow Firewall to access ports as we mentioned in Pre-Requisites:</p>



<pre class="wp-block-verse">firewall-cmd --permanent --add-service=http<br>firewall-cmd --permanent --add-service=https</pre>



<p>Now, add port 5222 for client machines &amp; 5269 for push actions to a Spacewalk Proxy, 69 udp if you want to use tftp.</p>



<pre class="wp-block-verse">firewall-cmd --permanent --add-port=5222/tcp --add-port=5269/tcp --add-port=69/udp</pre>



<p>Restart firewall services.</p>



<pre class="wp-block-verse">firewall-cmd --reload</pre>



<h5><strong>SpaceWalk Database</strong></h5>



<p>Spacewalk uses PostgreSQL as a database for storing its data.</p>



<p>It provides easy installation and runs the Spacewalk in no time. Here, we will use the embedded database for the Spacewalk installation.</p>



<pre class="wp-block-verse">yum -y install spacewalk-setup-postgresql</pre>



<p>You have the option to add an external database.</p>



<h5><strong>Install Spacewalk</strong></h5>



<p>Run the below command for postgresql</p>



<pre class="wp-block-verse">yum install -y spacewalk -y spacewalk-postgresql</pre>



<h3><strong>Configure Spacewalk</strong></h3>



<p>After Installing the embedded database, run the below command. It&#8217;ll ask to enter the admin mail &amp; organization details to generate the self-signed certificate for secure access.</p>



<pre class="wp-block-verse">spacewalk-setup</pre>



<p><strong>Output:</strong></p>



<pre class="wp-block-verse"> Setting up SELinux..<br> ** Database: Setting up database connection for PostgreSQL backend.<br> Database "rhnschema" does not exist<br> ** Database: Installing the database:<br> ** Database: This is a long process that is logged in:<br> ** Database:   /var/log/rhn/install_db.log<br> *** Progress: ###<br> ** Database: Installation complete.<br> ** Database: Populating database.<br> *** Progress: ##########################<br> Configuring tomcat.<br> Setting up users and groups.<br> ** GPG: Initializing GPG and importing key. <br>** GPG: Creating /root/.gnupg directory<br> You must enter an email address.<br> Admin Email Address? hsabir580@gmail.com<br> Performing initial configuration.<br> Configuring apache SSL virtual host.<br> Should setup configure apache's default ssl server for you (saves original ssl.conf) [Y]? Y &lt;&lt; <strong>Press Y </strong><br> ** /etc/httpd/conf.d/ssl.conf has been backed up to ssl.conf-swsave<br> Configuring jabberd.<br> Creating SSL certificates.<br> CA certificate password? &lt;&lt; <strong>Enter Certificate Password </strong><br> Re-enter CA certificate password? &lt;&lt; <strong>Re Enter Certificate Password</strong> <br> Cname alias of the machine (comma seperated)? <strong>server.osradar.local,server &lt;&lt; Certificate Subject Name (Your Domain Name) <br> Organization? OSRADAR &lt;&lt; Your Organization Name</strong><br> Organization Unit [server.osradar.local]? IT &lt;&lt; <strong>Your Organization Unit </strong><br> Email Address [hsabir580@gmail.com]? &lt;&lt; <strong>Email Address </strong><br> City? <strong>Albany &lt;&lt; Your City <br> </strong>State? <strong>NY &lt;&lt; Your State #</strong><br> Country code (Examples: "US", "JP", "IN", or type "?" to see a list)? <strong>US &lt;&lt; Your Country </strong><br> ** SSL: Generating CA certificate.<br> ** SSL: Deploying CA certificate.<br> ** SSL: Generating server certificate.<br> ** SSL: Storing SSL certificates.<br> Deploying configuration files.<br> Update configuration in database.<br> Setting up Cobbler..<br> Cobbler requires tftp and xinetd services be turned on for PXE provisioning functionality. Enable these services [Y]? Y <strong>&lt;&lt; Press Y </strong><br> Restarting services.<br> Installation complete.<br> Visit <a href="https://osradar.com">https://server.osradar.local </a>to create the Spacewalk administrator account. </pre>



<p>See the status of spacewalk by running</p>



<pre class="wp-block-verse">/usr/sbin/spacewalk-service status</pre>



<p>Run the given command to set up by yourself.</p>



<pre class="wp-block-verse">/usr/sbin/spacewalk-service start</pre>



<h3><strong>Access Spacewalk.</strong></h3>



<p>Open your browser &amp; navigate it to the below URL.</p>



<pre class="wp-block-verse"><a href="https://osradar.com">https://your-domain-name</a></pre>



<p>You&#8217;ll require to add exceptions for the self-signed certificate.</p>



<div class="wp-block-image"><figure class="aligncenter size-large"><img loading="lazy" width="847" height="527" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2019/12/your-connect-is-nots-secure.jpg" alt="" class="wp-image-17090" srcset="https://www.osradar.com/wp-content/uploads/2019/12/your-connect-is-nots-secure.jpg 847w, https://www.osradar.com/wp-content/uploads/2019/12/your-connect-is-nots-secure-300x187.jpg 300w, https://www.osradar.com/wp-content/uploads/2019/12/your-connect-is-nots-secure-768x478.jpg 768w, https://www.osradar.com/wp-content/uploads/2019/12/your-connect-is-nots-secure-696x433.jpg 696w, https://www.osradar.com/wp-content/uploads/2019/12/your-connect-is-nots-secure-675x420.jpg 675w" sizes="(max-width: 847px) 100vw, 847px" /></figure></div>



<p>Now, you&#8217;ll ask to create an Administrator account for spacewalk, set it &amp; click on Create organization.</p>



<div class="wp-block-image"><figure class="aligncenter size-large"><img loading="lazy" width="850" height="543" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2019/12/spacewalk-details.jpg" alt="" class="wp-image-17091" srcset="https://www.osradar.com/wp-content/uploads/2019/12/spacewalk-details.jpg 850w, https://www.osradar.com/wp-content/uploads/2019/12/spacewalk-details-300x192.jpg 300w, https://www.osradar.com/wp-content/uploads/2019/12/spacewalk-details-768x491.jpg 768w, https://www.osradar.com/wp-content/uploads/2019/12/spacewalk-details-696x445.jpg 696w, https://www.osradar.com/wp-content/uploads/2019/12/spacewalk-details-657x420.jpg 657w" sizes="(max-width: 850px) 100vw, 850px" /></figure></div>



<p>After creating account you&#8217;ll be redirected to admin panel where you can perform all the tasks allowed to administrator.</p>



<div class="wp-block-image"><figure class="aligncenter size-large"><img loading="lazy" width="854" height="539" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2019/12/spacewalk-dashboard.jpg" alt="" class="wp-image-17092" srcset="https://www.osradar.com/wp-content/uploads/2019/12/spacewalk-dashboard.jpg 854w, https://www.osradar.com/wp-content/uploads/2019/12/spacewalk-dashboard-300x189.jpg 300w, https://www.osradar.com/wp-content/uploads/2019/12/spacewalk-dashboard-768x485.jpg 768w, https://www.osradar.com/wp-content/uploads/2019/12/spacewalk-dashboard-696x439.jpg 696w, https://www.osradar.com/wp-content/uploads/2019/12/spacewalk-dashboard-665x420.jpg 665w" sizes="(max-width: 854px) 100vw, 854px" /></figure></div>



<p>Congratulations! You&#8217;ve finished up installing Spacewalk on CentOS 7. </p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-install-spacewalk-on-centos-7-rhel-7/">How To Install SpaceWalk on CentOS 7 / RHEL 7</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.osradar.com/how-to-install-spacewalk-on-centos-7-rhel-7/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
