<?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>centos8 Archives - Linux Windows and android Tutorials</title>
	<atom:link href="https://www.osradar.com/tag/centos8/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.osradar.com</link>
	<description>tutorials and news and Seurity</description>
	<lastBuildDate>Mon, 18 Jan 2021 14:45:43 +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 pgAdmin4 on CentOS 8?</title>
		<link>https://www.osradar.com/install-pgadmin4-centos-8/</link>
					<comments>https://www.osradar.com/install-pgadmin4-centos-8/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Thu, 21 Jan 2021 02:44:00 +0000</pubDate>
				<category><![CDATA[Databases]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[CentOS]]></category>
		<category><![CDATA[centos8]]></category>
		<category><![CDATA[Pgadmin]]></category>
		<category><![CDATA[pgadmin4]]></category>
		<category><![CDATA[postgresql]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[Tutorial]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=27815</guid>

					<description><![CDATA[<p>Hello friends in this post, you will learn how to install pgAdmin4 on CentOS 8. This process is quite simple but requires some steps. pgAdmin is the most popular and features rich Open Source administration and development platform for PostgreSQL, the most advanced Open Source database in the world. Thanks to this application, you can [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-pgadmin4-centos-8/">How to install pgAdmin4 on CentOS 8?</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p id="introduction"><a name="introduction" href="#introduction"></a>Hello friends in this post, you will learn how to install pgAdmin4 on CentOS 8. This process is quite simple but requires some steps.</p>



<p><a href="https://www.pgadmin.org/">pgAdmin</a> is the most popular and features rich Open Source administration and development platform for <a href="https://www.osradar.com/tag/postgresql/">PostgreSQL</a>, the most advanced Open Source database in the world.</p>



<p>Thanks to this application, you can have a graphical interface to manage everything related to PostgreSQL. The main advantage of this program is the ability to view all the records we have stored. On the other hand, we can create connections and customize them to achieve even more security. It is also possible to create, modify, and delete databases.</p>



<p>So, pgAdmin4 becomes a printable application if you use a lot of PostgreSQL or if you want to use it for educational purposes.</p>



<p>So, let us install pgAdmin4 on CentOS 8.</p>



<h2 id="install-postgresql-on-centos-8"><a href="#install-postgresql-on-centos-8" name="install-postgresql-on-centos-8"></a>Install PostgreSQL on CentOS 8</h2>



<p>The first step we have to do is to have an instance of PostgreSQL up and running on our server. For this we have a post that can help you with this:</p>



<p><a href="https://www.osradar.com/install-postgresql-12-centos-8/">How to install PostgreSQL 12 on CentOS 8 / RHEL 8 / Oracle Linux 8?</a></p>



<p>Once PostgreSQL is correctly installed and configured then we can proceed to install PgAdmin4 without any problems.</p>



<h2 id="install-pgadmin4-on-centos-8"><a name="install-pgadmin4-on-centos-8" href="#install-pgadmin4-on-centos-8"></a>Install pgAdmin4 on CentOS 8</h2>



<p>The first thing we have to do is update the operating system.</p>



<pre class="wp-block-preformatted">dnf update</pre>



<p>Then, enable the EPEL repository that we will need to enhance the installation:</p>



<pre class="wp-block-preformatted">dnf install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm</pre>



<p>Within this repository, there is one called <code>powertool</code> that we also have to enable.</p>



<pre class="wp-block-preformatted">dnf config-manager --set-enabled powertools</pre>



<p>And finally, install pgAdmin4 by running the following command:</p>



<pre class="wp-block-preformatted">dnf --enablerepo=powertools install pgadmin4</pre>



<p>After accepting the changes, the download and installation process will begin.</p>



<h3 id="preparing-pgadmin4-for-the-firt-use"><a href="#preparing-pgadmin4-for-the-firt-use" name="preparing-pgadmin4-for-the-firt-use"></a>Preparing pgAdmin4 for the firt use</h3>



<p>Before using pgAdmin4 it is advisable to make a few settings so as not to have problems of any kind.</p>



<p>First, start and enable the Apache webserver that was installed during the process.</p>



<pre class="wp-block-preformatted">systemctl enable httpd
systemctl start httpd</pre>



<p>pgAdmin comes with a default Apache configuration, which we can use or modify. In this case, we will copy it to take advantage of it.</p>



<pre class="wp-block-preformatted">cp /etc/httpd/conf.d/pgadmin4.conf.sample /etc/httpd/conf.d/pgadmin4.conf</pre>



<p>Apply the changes by restarting Apache:</p>



<pre class="wp-block-preformatted">systemctl restart httpd</pre>



<p>The next step is to create dedicated folders for pgAdmin log and lib. You can choose another location but the most pertinent is <code>/var/</code></p>



<pre class="wp-block-preformatted">mkdir -p /var/lib/pgadmin4/
mkdir -p /var/log/pgadmin4/</pre>



<p>You can then configure pgAdmin4 to tell it to use the paths of the folders you have created.</p>



<pre class="wp-block-preformatted">nano /usr/lib/python3.6/site-packages/pgadmin4-web/config_distro.py</pre>



<p> And add the following lines:</p>



<pre class="wp-block-preformatted"><code data-origin="<pre&gt;<code&gt;LOG_FILE = '/var/log/pgadmin4/pgadmin4.log
SQLITE_PATH = '/var/lib/pgadmin4/pgadmin4.db
SESSION_DB_PATH = '/var/lib/pgadmin4/sessions
STORAGE_DIR = '/var/lib/pgadmin4/storage
</code&gt;</pre&gt;
<p&gt;">LOG_FILE = '/var/log/pgadmin4/pgadmin4.log</code>
<code data-origin="<pre&gt;<code&gt;LOG_FILE = '/var/log/pgadmin4/pgadmin4.log
SQLITE_PATH = '/var/lib/pgadmin4/pgadmin4.db
SESSION_DB_PATH = '/var/lib/pgadmin4/sessions
STORAGE_DIR = '/var/lib/pgadmin4/storage
</code&gt;</pre&gt;
<p&gt;">SQLITE_PATH = '/var/lib/pgadmin4/pgadmin4.db</code>
<code data-origin="<pre&gt;<code&gt;LOG_FILE = '/var/log/pgadmin4/pgadmin4.log
SQLITE_PATH = '/var/lib/pgadmin4/pgadmin4.db
SESSION_DB_PATH = '/var/lib/pgadmin4/sessions
STORAGE_DIR = '/var/lib/pgadmin4/storage
</code&gt;</pre&gt;
<p&gt;">SESSION_DB_PATH = '/var/lib/pgadmin4/sessions</code>
<code data-origin="<pre&gt;<code&gt;LOG_FILE = '/var/log/pgadmin4/pgadmin4.log
SQLITE_PATH = '/var/lib/pgadmin4/pgadmin4.db
SESSION_DB_PATH = '/var/lib/pgadmin4/sessions
STORAGE_DIR = '/var/lib/pgadmin4/storage
</code&gt;</pre&gt;
<p&gt;">STORAGE_DIR = '/var/lib/pgadmin4/storage </code></pre>



<p>Save the changes, and then close the file.</p>



<p>Now define the username and password that we will use to access pgAdmin4.</p>



<pre class="wp-block-preformatted">python3 /usr/lib/python3.6/site-packages/pgadmin4-web/setup.py </pre>



<p>And there you will have to set the password.</p>



<figure class="wp-block-image alignnone size-full wp-image-27819"><img loading="lazy" width="991" height="218" src="https://www.osradar.com/wp-content/uploads/2021/01/1-8.png" alt="1.- Configure a new admin for pgAdmin4" class="wp-image-27819" srcset="https://www.osradar.com/wp-content/uploads/2021/01/1-8.png 991w, https://www.osradar.com/wp-content/uploads/2021/01/1-8-300x66.png 300w, https://www.osradar.com/wp-content/uploads/2021/01/1-8-768x169.png 768w, https://www.osradar.com/wp-content/uploads/2021/01/1-8-696x153.png 696w" sizes="(max-width: 991px) 100vw, 991px" /><figcaption>1.- Configure a new admin for pgAdmin4</figcaption></figure>



<p>Assign Apache to be the owner of the created directories.</p>



<pre class="wp-block-preformatted">chown -R apache:apache /var/lib/pgadmin4
chown -R apache:apache /var/log/pgadmin4</pre>



<p>Apply all changes by restarting Apache and PostgreSQL.</p>



<pre class="wp-block-preformatted">systemctl restart httpd
systemctl restart postgresql-12 </pre>



<p>Now we can use it.</p>



<h2 id="testing-the-installation"><a href="#testing-the-installation" name="testing-the-installation"></a>Testing the installation</h2>



<p>Now we can access <code>http://your-server/pgadmin4</code> and you should see the following screen</p>



<figure class="wp-block-image alignnone size-full wp-image-27817"><img loading="lazy" width="1366" height="669" src="https://www.osradar.com/wp-content/uploads/2021/01/1-7.png" alt="2.- pgAdmin login screen" class="wp-image-27817" srcset="https://www.osradar.com/wp-content/uploads/2021/01/1-7.png 1366w, https://www.osradar.com/wp-content/uploads/2021/01/1-7-300x147.png 300w, https://www.osradar.com/wp-content/uploads/2021/01/1-7-1024x502.png 1024w, https://www.osradar.com/wp-content/uploads/2021/01/1-7-768x376.png 768w, https://www.osradar.com/wp-content/uploads/2021/01/1-7-696x341.png 696w, https://www.osradar.com/wp-content/uploads/2021/01/1-7-1068x523.png 1068w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption>2.- pgAdmin login screen</figcaption></figure>



<p>Now login with your credentials and you will see the pgAdmin main screen. This proves that everything works.</p>



<figure class="wp-block-image alignnone size-full wp-image-27818"><img loading="lazy" width="1366" height="669" src="https://www.osradar.com/wp-content/uploads/2021/01/2-8.png" alt="3.- pgAdmin4 running on CentOS 8" class="wp-image-27818" srcset="https://www.osradar.com/wp-content/uploads/2021/01/2-8.png 1366w, https://www.osradar.com/wp-content/uploads/2021/01/2-8-300x147.png 300w, https://www.osradar.com/wp-content/uploads/2021/01/2-8-1024x502.png 1024w, https://www.osradar.com/wp-content/uploads/2021/01/2-8-768x376.png 768w, https://www.osradar.com/wp-content/uploads/2021/01/2-8-696x341.png 696w, https://www.osradar.com/wp-content/uploads/2021/01/2-8-1068x523.png 1068w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption>3.- pgAdmin4 running on CentOS 8</figcaption></figure>



<p>All you have to do now is add your PostgreSQL instance.</p>



<h2 id="conclusion"><a href="#conclusion" name="conclusion"></a>Conclusion</h2>



<p>pgAdmin4 is a vital tool to manipulate PostgreSQL visually and very easily. Its potentials are vast and it is recommended that you visit the project website to learn more about it.</p>



<footer style="position: fixed; font-size: .8em; text-align: right; bottom: 0px; margin-left: -25px; height: 20px; width: 100%;">generated by <a href="http://pad.haroopress.com" target="_blank" rel="noopener">haroopad</a></footer>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-pgadmin4-centos-8/">How to install pgAdmin4 on CentOS 8?</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/install-pgadmin4-centos-8/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How To Set Up A Software RAID-1 On Centos8</title>
		<link>https://www.osradar.com/how-to-set-up-a-software-raid-1-on-centos8/</link>
					<comments>https://www.osradar.com/how-to-set-up-a-software-raid-1-on-centos8/#respond</comments>
		
		<dc:creator><![CDATA[Mel]]></dc:creator>
		<pubDate>Fri, 11 Oct 2019 08:50:49 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Unix]]></category>
		<category><![CDATA[centos8]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[raid]]></category>
		<category><![CDATA[Storage]]></category>
		<category><![CDATA[tools]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=14165</guid>

					<description><![CDATA[<p>RAID introduces:&#160;(Redundant Array of Inexpensive Disks or Drives, or&#160;Redundant Array of Independent Disks) is a data&#160;storage virtualization&#160;technology that combines multiple physical&#160;disk drive&#160;components into one or more logical units for the purposes of&#160;data redundancy, performance improvement, or both. This was in contrast to the previous concept of highly reliable mainframe disk drives referred to as &#8220;single [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-set-up-a-software-raid-1-on-centos8/">How To Set Up A Software RAID-1 On Centos8</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p><strong>RAID introduces:&nbsp;(Redundant Array of Inexpensive Disks or Drives, or&nbsp;Redundant Array of Independent Disks) </strong>is a data&nbsp;<a href="https://en.wikipedia.org/wiki/Storage_virtualization">storage virtualization</a>&nbsp;technology that combines multiple physical&nbsp;<a href="https://en.wikipedia.org/wiki/Disk_drive">disk drive</a>&nbsp;components into one or more logical units for the purposes of&nbsp;<a href="https://en.wikipedia.org/wiki/Data_redundancy">data redundancy</a>, performance improvement, or both. This was in contrast to the previous concept of highly reliable mainframe disk drives referred to as &#8220;single large expensive disk&#8221; (SLED). </p>



<p>Data is distributed across the drives in one of several ways, referred to as RAID levels, depending on the required level of and performance. The different schemes, or data distribution layouts, are named by the word &#8220;RAID&#8221; followed by a number, for example, RAID&nbsp;0 or RAID&nbsp;1. Each scheme, or RAID level, provides a different balance among the key goals:&nbsp;<a href="https://en.wikipedia.org/wiki/Reliability_engineering">reliability</a>,&nbsp;<a href="https://en.wikipedia.org/wiki/Availability">availability</a>,&nbsp;<a href="https://en.wikipedia.org/wiki/Computer_performance">performance</a>, and&nbsp;<a href="https://en.wikipedia.org/wiki/Computer_data_storage#Capacity">capacity</a>. RAID levels greater than RAID&nbsp;0 provide protection against unrecoverable&nbsp;<a href="https://en.wikipedia.org/wiki/Disk_sector">sector</a>&nbsp;read errors, as well as against failures of whole physical drives.——[<a href="https://en.wikipedia.org/wiki/RAID">RAID.wikipedia]</a></p>



<h3><strong>The test environment</strong></h3>



<ul><li>CentOS 8.0 virtual machine</li><li>Add two hard disks</li><li>The installation for mdadm</li></ul>



<h3><strong>raid-1 operating steps</strong></h3>



<ul><li>Use LSBLK to view the current hard disk partition</li></ul>



<pre class="wp-block-preformatted">lsblk</pre>



<figure class="wp-block-image is-resized"><img loading="lazy" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2019/10/raid.png" alt="" class="wp-image-14462" width="690" height="330" srcset="https://www.osradar.com/wp-content/uploads/2019/10/raid.png 581w, https://www.osradar.com/wp-content/uploads/2019/10/raid-300x144.png 300w" sizes="(max-width: 690px) 100vw, 690px" /><figcaption> disk partition info</figcaption></figure>



<p>You can see that sdb and sdc are not in use</p>



<ul><li>partition for sdb and sdc</li></ul>



<p>Because RAID requires the same size of each hard disk, sdb and sdc are partitioned respectively, and each hard disk is partitioned into a 16G partition, and Hex code is modified as fd</p>



<pre class="wp-block-preformatted">fdisk /dev/sdc</pre>



<figure class="wp-block-image"><img loading="lazy" width="1024" height="413" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2019/10/fdisk-1024x413.png" alt="partition for sdc" class="wp-image-14463" srcset="https://www.osradar.com/wp-content/uploads/2019/10/fdisk-1024x413.png 1024w, https://www.osradar.com/wp-content/uploads/2019/10/fdisk-300x121.png 300w, https://www.osradar.com/wp-content/uploads/2019/10/fdisk-768x310.png 768w, https://www.osradar.com/wp-content/uploads/2019/10/fdisk-696x280.png 696w, https://www.osradar.com/wp-content/uploads/2019/10/fdisk-1068x430.png 1068w, https://www.osradar.com/wp-content/uploads/2019/10/fdisk-1042x420.png 1042w, https://www.osradar.com/wp-content/uploads/2019/10/fdisk.png 1330w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption> partition for sdc</figcaption></figure>



<p>Other hard disk partition process omitted, partition after as follows:</p>



<figure class="wp-block-image"><img loading="lazy" width="933" height="306" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2019/10/企业微信截图_15706112399803.png" alt="" class="wp-image-14465" srcset="https://www.osradar.com/wp-content/uploads/2019/10/企业微信截图_15706112399803.png 933w, https://www.osradar.com/wp-content/uploads/2019/10/企业微信截图_15706112399803-300x98.png 300w, https://www.osradar.com/wp-content/uploads/2019/10/企业微信截图_15706112399803-768x252.png 768w, https://www.osradar.com/wp-content/uploads/2019/10/企业微信截图_15706112399803-696x228.png 696w" sizes="(max-width: 933px) 100vw, 933px" /><figcaption>disk info</figcaption></figure>



<ul><li>installation mdadm</li></ul>



<pre class="wp-block-preformatted">yum install madadm</pre>



<ul><li>Create a RAID-1</li></ul>



<p>sdb1, sdc1 form a group of raid-1, RAID device named /dev/md0</p>



<pre class="wp-block-preformatted">mdadm -C /dev/md0 -a yes -l 1 -n 2 /dev/sd{c1,b1}</pre>



<figure class="wp-block-image"><img loading="lazy" width="684" height="189" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2019/10/raid1.png" alt="raid-1" class="wp-image-14466" srcset="https://www.osradar.com/wp-content/uploads/2019/10/raid1.png 684w, https://www.osradar.com/wp-content/uploads/2019/10/raid1-300x83.png 300w" sizes="(max-width: 684px) 100vw, 684px" /><figcaption>build raid-1</figcaption></figure>



<p>Check the progress:</p>



<pre class="wp-block-preformatted">cat /proc.mdstat </pre>



<figure class="wp-block-image"><img loading="lazy" width="882" height="178" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2019/10/raidmastat.png" alt="" class="wp-image-14467" srcset="https://www.osradar.com/wp-content/uploads/2019/10/raidmastat.png 882w, https://www.osradar.com/wp-content/uploads/2019/10/raidmastat-300x61.png 300w, https://www.osradar.com/wp-content/uploads/2019/10/raidmastat-768x155.png 768w, https://www.osradar.com/wp-content/uploads/2019/10/raidmastat-696x140.png 696w" sizes="(max-width: 882px) 100vw, 882px" /><figcaption> progress </figcaption></figure>



<p>View RAID information:</p>



<pre class="wp-block-preformatted">mdadm -D /dev/md0</pre>



<figure class="wp-block-image"><img loading="lazy" width="877" height="386" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2019/10/info.png" alt="" class="wp-image-14468" srcset="https://www.osradar.com/wp-content/uploads/2019/10/info.png 877w, https://www.osradar.com/wp-content/uploads/2019/10/info-300x132.png 300w, https://www.osradar.com/wp-content/uploads/2019/10/info-768x338.png 768w, https://www.osradar.com/wp-content/uploads/2019/10/info-696x306.png 696w" sizes="(max-width: 877px) 100vw, 877px" /><figcaption>  RAID information </figcaption></figure>



<p>

Here we create a RAID1 disk array from mdadm

</p>



<ul><li>Create the md0 profile</li></ul>



<pre class="wp-block-preformatted">echo DEVICE /dev/sd{b,c}1 &gt;&gt; /etc/mdadm.conf
mdadm -Evs &gt;&gt; /etc/mdadm.con </pre>



<ul><li>Format &amp; create directory and <a href="https://www.osradar.com/how-to-mount-unmount-a-file-system-in-linux/">mount</a></li></ul>



<pre class="wp-block-preformatted">mkfs.xfs /dev/md0
mkdir    /raid1
mount    /dev/md0 /raid1
df       -h</pre>



<figure class="wp-block-image is-resized"><img loading="lazy" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2019/10/mount.png" alt="" class="wp-image-14470" width="697" height="383" srcset="https://www.osradar.com/wp-content/uploads/2019/10/mount.png 654w, https://www.osradar.com/wp-content/uploads/2019/10/mount-300x165.png 300w" sizes="(max-width: 697px) 100vw, 697px" /><figcaption>mount disk</figcaption></figure>



<p>At this time we can go to /raid1 directory to store our files</p>



<ul><li>Write the partition table and mount automatically at startup</li></ul>



<pre class="wp-block-preformatted">echo "/dev/md0 /raid1 xfs defaults 0 0" &gt;&gt; /etc/fstab </pre>



<h3><strong>Conclusion</strong></h3>



<p>Save A file to display of RAID 1, RAID will cut into A1, A2, A3, branch of two pieces of written to disk, can make the disk write speed slightly down, because this way is written to disk, one of the hard disk is broken, another have the same backup hard disk, so the RAID 1 is redundant support, but the cost is quite high, also only 1/2 of the disk space can be used</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-set-up-a-software-raid-1-on-centos8/">How To Set Up A Software RAID-1 On Centos8</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-set-up-a-software-raid-1-on-centos8/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>CentOS 8 Available!</title>
		<link>https://www.osradar.com/centos-8-available/</link>
					<comments>https://www.osradar.com/centos-8-available/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Tue, 24 Sep 2019 19:28:08 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Unix]]></category>
		<category><![CDATA[CentOS]]></category>
		<category><![CDATA[Centos 8]]></category>
		<category><![CDATA[centos8]]></category>
		<category><![CDATA[distributions]]></category>
		<category><![CDATA[New version]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=13817</guid>

					<description><![CDATA[<p>After several months of the release of RHEL 8, CentOS 8 is finally available. In this post, we will try to explain to you what it is and what this new version will bring us. CentOS the binary clone of Red Hat Enterprise Linux It is unlikely that you will not know what CentOS is [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/centos-8-available/">CentOS 8 Available!</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>After several months of the release of RHEL 8, <strong>CentOS 8 is finally available</strong>. In this post, we will try to explain to you what it is and what this new version will bring us.</p>
<h2>CentOS the binary clone of Red Hat Enterprise Linux</h2>
<p>It is unlikely that you will not know what <a href="https://www.centos.org/" target="_blank" rel="noopener noreferrer">CentOS</a> is by now, but I will tell you in a few words. CentOS is a Linux distribution that is built from Red Hat Enterprise Linux binaries. This makes it perfectly compatible with the latter which gives us a robust, reliable and stable system for our home or enterprise servers.</p>
<p>However, there is a small downside, and that is that we will not have the commercial support of RHEL, but it is also completely free to use it. As I said, it makes it ideal for small to medium-sized projects.</p>
<p><strong>The project has been with us for more than 15 years</strong>. An age that allows it to distinguish itself as a solid and mature project and has the main objective of providing a free enterprise operating system, easy to use and affordable for everyone.</p>
<h2>CentOS 8 based on RHEL 8</h2>


<p>As I mentioned, CentOS is a binary level clone of RHEL. Therefore, CentOS 8 is based on RHEL 8. Then, we will be able to have all the news of the Red Hat system in a very easy and simple way. </p>



<p>Some of the new features of RHEL 8 that are also available in CentOS 8 are the following:</p>



<ul><li>Support for OpenSSL 1.1.1 and TLS 1.3 cryptographic standards.</li><li>Support for Red Hat&#8217;s container tool for creating, running, and sharing applications in containers.</li><li>Improved support for ARM and Power architectures, SAP, and real-time applications.</li></ul>



<p>On the other hand, there are other important novelties such as:</p>



<ul><li>Wayland is the default screen server.</li><li>NTP replaced by Chrony.</li><li>Bloat: IdM (Identity Management Domain), Cockpit.</li></ul>



<p>These are very technical novelties to understand. In general, we will find updates of all kinds such as <a href="https://www.osradar.com/tag/php/">PHP</a><a rel="noreferrer noopener" aria-label="HP, (opens in a new tab)" href="https://www.osradar.com/tag/php/" target="_blank">,</a> <a rel="noreferrer noopener" aria-label="Apache (opens in a new tab)" href="https://www.osradar.com/tag/apache/" target="_blank">Apache</a>, <a rel="noreferrer noopener" aria-label="Nginx (opens in a new tab)" href="https://www.osradar.com/tag/nginx/" target="_blank">Nginx</a> or <a rel="noreferrer noopener" aria-label="Java (opens in a new tab)" href="https://www.osradar.com/tag/java/" target="_blank">Java</a>. Besides Python and the GCC or G++ compilers.</p>



<p>Now all that&#8217;s left to do is <a rel="noreferrer noopener" aria-label="download it (opens in a new tab)" href="http://isoredirect.centos.org/centos/8/isos/x86_64/" target="_blank">download it</a> and start working with it. Of course, CentOS 8 will play an important role on our site as usual.</p>



<p>Please share and join <a href="https://t.me/osradar" target="_blank" rel="noreferrer noopener" aria-label="our Telegram channel (opens in a new tab)">our Telegram channel</a>.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/centos-8-available/">CentOS 8 Available!</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/centos-8-available/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
