<?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>fedora Archives - Linux Windows and android Tutorials</title>
	<atom:link href="https://www.osradar.com/tag/fedora/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.osradar.com</link>
	<description>tutorials and news and Seurity</description>
	<lastBuildDate>Wed, 30 Jun 2021 16:51:01 +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 the netstat command on Linux?</title>
		<link>https://www.osradar.com/how-to-install-the-netstat-command-on-linux/</link>
					<comments>https://www.osradar.com/how-to-install-the-netstat-command-on-linux/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Sat, 03 Jul 2021 04:50:00 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[alma linux]]></category>
		<category><![CDATA[CentOS]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[netstat]]></category>
		<category><![CDATA[RHEL]]></category>
		<category><![CDATA[rockylinux]]></category>
		<category><![CDATA[terminal]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[ubuntu]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=30911</guid>

					<description><![CDATA[<p>Hello, friends. In this post, we will show you how to install the Netstat command with which we can quickly monitor our network information. The post will be approached from the terminal and covering most Linux distributions or at least the most popular ones. Netstat is a tool that we can use through the command [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-install-the-netstat-command-on-linux/">How to install the netstat command on Linux?</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p class="has-line-data">Hello, friends. In this post, we will show you how to install the Netstat command with which we can quickly monitor our network information. The post will be approached from the terminal and covering most Linux distributions or at least the most popular ones.</p>



<p class="has-line-data"><strong><a href="http://netstat.net/" target="_blank" rel="noreferrer noopener">Netstat </a>is a tool that we can use through the command line</strong>. It allows us to <strong>monitor networks and also to troubleshoot certain problems that may arise</strong>. Also, it is widely used to identify the TCP connections that are active on the machine on which the command is executed.</p>



<p class="has-line-data">All this, we emit an output screen where we can visualize the network information or even export it through the use of commands.</p>



<p class="has-line-data"><strong>This tool is quite useful for the more technical Linux users</strong> because it allows us to quickly analyze and detect possible problems that are happening in our network. Even more, to make an analysis on it.</p>



<p class="has-line-data">Despite being so popular, it is not included in most Linux distributions and that is why in this post, we will help you how to install it.</p>



<p class="has-line-data">So, let’s start.</p>



<h2 class="code-line"><a id="Install_the_Netstat_on_Linux_command_12"></a>Install the Netstat on Linux command</h2>



<p class="has-line-data">As we said, being such a popular tool, it is hard to believe that it is not included in the existing Linux distributions.</p>



<p class="has-line-data">The solution to this is to install via official repositories, the <code>net-tools</code> package in order to add the command but also other important tools.</p>



<p class="has-line-data">So, in the case of Debian, Ubuntu, Linux Mint, ElementaryOS, and any distribution based on any of these, just open the terminal and execute</p>



<pre class="wp-block-preformatted">sudo apt update
sudo apt install net-tools</pre>



<p class="has-line-data">In case you are using, Fedora 34, RockyLinux, AlmaLinux OS, RHEL 8, CentOS 8, Oracle Linux 8, or any distribution based on these.</p>



<pre class="wp-block-preformatted">sudo dnf install net-tools</pre>



<p class="has-line-data">But, if you are using older versions such as RHEL 7, CentOS 7, Oracle Linux 7, or any of their derivatives, then you will need to run</p>



<pre class="wp-block-preformatted">sudo yum install net-tools</pre>



<p class="has-line-data">A very popular distribution among Linux users is Arch Linux. It also has some derivatives such as Manjaro. For these distributions or any derivative of them, just run:</p>



<pre class="wp-block-preformatted">sudo pacman -S netstat-nat</pre>



<p class="has-line-data">As we all know, one of our favorite distributions is OpenSUSE, so we can’t leave it out.</p>



<p class="has-line-data">So, to install it on OpenSUSE</p>



<pre class="wp-block-preformatted">sudo zypper in net-tools</pre>



<p class="has-line-data">This way we will be able to use it from the terminal without problems.</p>



<h2 class="code-line"><a id="Using_the_Netstat_command_43"></a>Using the Netstat command</h2>



<p class="has-line-data">It is normal to use the command directly on the terminal. And there it will show much of the default information of the active network interface.</p>



<p class="has-line-data">Another common use is to run it together with some other options, for example:</p>



<pre class="wp-block-preformatted">netstat -tulpn</pre>



<p class="has-line-data">For more complex use of this command, we have prepared a post on the use of Netstat where you can find use cases.</p>



<p class="has-line-data"><a href="https://www.osradar.com/monitor-network-with-netstat-command-in-linux/" target="_blank" rel="noreferrer noopener">Monitor Network with netstat command in Linux</a></p>



<p class="has-line-data">So, enjoy it.</p>



<h2 class="code-line"><a id="Conclusion_57"></a>Conclusion</h2>



<p class="has-line-data">These types of commands can be useful in our work where many tools are required to help with network control. Although there are more specialized and larger tools, it is also true that sometimes we just need a little help.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-install-the-netstat-command-on-linux/">How to install the netstat command on Linux?</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-the-netstat-command-on-linux/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to install Rust Programming Language on Fedora 34?</title>
		<link>https://www.osradar.com/install-rust-programming-language-fedora-34/</link>
					<comments>https://www.osradar.com/install-rust-programming-language-fedora-34/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Wed, 30 Jun 2021 06:38:00 +0000</pubDate>
				<category><![CDATA[Desktop]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[rust]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=30974</guid>

					<description><![CDATA[<p>Hello, friends. We know that many developers use Fedora as a system to work with. So, it is convenient for you to know how to install Rust Programming Language on Fedora 34. Rust is an open source, multipurpose and new programming language that aims to retire to the C language. Although it is sponsored by [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-rust-programming-language-fedora-34/">How to install Rust Programming Language on Fedora 34?</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>Hello, friends. We know that many developers use Fedora as a system to work with. So, it is convenient for you to know how to install Rust Programming Language on Fedora 34.</p>



<p><a href="https://www.rust-lang.org/">Rust</a> is an open source, multipurpose and new programming language that aims to retire to the C language. Although it is sponsored by <a href="https://www.mozilla.org/">Mozilla</a> and <a href="http://samsung.com">Samsung</a>, it is a community project. Its focus is primarily on large programs that run on the client and server side.</p>



<p>The main characteristics of Rust are performance, reliability, and productivity. Rust can compile and create applications very quickly; it is conducive to very few failures and its large documentation makes it possible to learn quickly.</p>



<h2>Install Rust Programming Language on Fedora 34</h2>



<p>The installation is quite simple to perform through the terminal. To do this, first, make sure that the distribution is up to date.</p>



<p>So, open a terminal and run</p>



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



<p>After that you should install <a href="https://www.osradar.com/install-development-build-tools-fedora/" target="_blank" rel="noreferrer noopener">the development and build tools</a> for this our post will help you.</p>



<p>After that, you can install the <code>curl</code> and <code>nano</code> packages with which we can complete the post.</p>



<pre class="wp-block-preformatted">sudo dnf install nano curl</pre>



<p>Now proceed to download and run the installation script provided by the Rust developers.</p>



<pre class="wp-block-preformatted">curl https://sh.rustup.rs -sSf | sh</pre>



<p>During the execution of the script, we will be asked about the type of installation. In this case, choose option 1.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="870" height="696" src="https://www.osradar.com/wp-content/uploads/2021/06/1-9.png" alt="1.- Install Rust on Fedora 34" class="wp-image-30976" srcset="https://www.osradar.com/wp-content/uploads/2021/06/1-9.png 870w, https://www.osradar.com/wp-content/uploads/2021/06/1-9-300x240.png 300w, https://www.osradar.com/wp-content/uploads/2021/06/1-9-768x614.png 768w, https://www.osradar.com/wp-content/uploads/2021/06/1-9-696x557.png 696w" sizes="(max-width: 870px) 100vw, 870px" /><figcaption>1.- Install Rust on Fedora 34</figcaption></figure>



<p>Then the whole installation process will continue and at the end, you will see the following screen:</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="224" src="https://www.osradar.com/wp-content/uploads/2021/06/2-7-1024x224.png" alt="2.- Rust installed" class="wp-image-30977" srcset="https://www.osradar.com/wp-content/uploads/2021/06/2-7-1024x224.png 1024w, https://www.osradar.com/wp-content/uploads/2021/06/2-7-300x65.png 300w, https://www.osradar.com/wp-content/uploads/2021/06/2-7-768x168.png 768w, https://www.osradar.com/wp-content/uploads/2021/06/2-7-696x152.png 696w, https://www.osradar.com/wp-content/uploads/2021/06/2-7.png 1040w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>2.- Rust installed</figcaption></figure>



<p>This way the installation has been completed successfully. To make Rust available from the terminal without any problems run</p>



<pre class="wp-block-preformatted">source $HOME/.cargo/env</pre>



<p>Now we are ready to try Rust. We are ready to test Rust, for example, show the installed version.</p>



<pre class="wp-block-preformatted">rustc --version<br>rustc 1.53.0 (53cb7b09b 2021-06-17)</pre>



<h2>Your first program with Rustc</h2>



<p>Now to check that everything is OK we need to create a program. We will do the classic &#8220;Hello World&#8221;.</p>



<p>First, create the necessary directory structure and access it.</p>



<pre class="wp-block-preformatted">mkdir ~/projects<br>cd projects<br>mkdir example<br>cd example</pre>



<p>Obviously, you can change the names and adjust them to your preferences.</p>



<p>Now create the code file</p>



<pre class="wp-block-preformatted">nano helloworld.rs</pre>



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



<pre class="wp-block-preformatted">fn main() {<br>println!("Hello, thanks for visiting Osradar blog.");<br>}</pre>



<p>Save the changes and close the editor.</p>



<p>Now compile the program</p>



<pre class="wp-block-preformatted">rustc helloworld.rs</pre>



<p>And run it</p>



<pre class="wp-block-preformatted">./helloworld<br>Hello, thanks for visiting Osradar blog.</pre>



<p>So, Rust is installed.</p>



<h2>Conclusion</h2>



<p>Installing the Rust language in Linux is a fairly simple process. The possibilities offered by this language are many. It is also a great alternative to traditional programming languages.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-rust-programming-language-fedora-34/">How to install Rust Programming Language on Fedora 34?</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-rust-programming-language-fedora-34/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to install PIP on Fedora 34?</title>
		<link>https://www.osradar.com/install-pip-fedora-34/</link>
					<comments>https://www.osradar.com/install-pip-fedora-34/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Fri, 11 Jun 2021 23:59:00 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[pip]]></category>
		<category><![CDATA[python]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=30548</guid>

					<description><![CDATA[<p>Hello, friends. We are giving good support to Fedora 34. That&#8217;s why today we will show you how to install PIP on Fedora 34 and get it ready for you to use comfortably. What is PIP? Pip is a package manager for Python projects. Thanks to it we will be able to install many libraries, [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-pip-fedora-34/">How to install PIP on Fedora 34?</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>Hello, friends. We are giving good support to Fedora 34. That&#8217;s why today we will show you how to install PIP on Fedora 34 and get it ready for you to use comfortably.</p>



<h2>What is PIP?</h2>



<p>Pip is a package manager for Python projects. Thanks to it we will be able to install many libraries, programs, and tools simply as if it were a system package.</p>



<p>But the most interesting utility of PIP is that by creating a Python virtual environment, we can use it to install programs in the path of the project without affecting other projects or the system itself.</p>



<p>The operation is similar to that of a package manager like <a href="https://www.osradar.com/apt-the-ubuntu-package-manager/" target="_blank" rel="noreferrer noopener">APT</a>, DNF, or <a href="https://www.osradar.com/how-to-use-the-zypper-command/" target="_blank" rel="noreferrer noopener">Zypper</a> because we can install, uninstall and update Python packages from the <a href="https://pypi.org/project/pip/" target="_blank" rel="noreferrer noopener">PIP repositories</a>.</p>



<p>So, let&#8217;s install it and get it ready for you to use without any problems.</p>



<h2>Install Pip on Fedora 34</h2>



<p>The installation will be done using the terminal. So, open a new session from the main menu. When you have opened the terminal, you can update the distribution by running</p>



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



<p>Then, you can perform a search in the Fedora repositories.</p>



<pre class="wp-block-preformatted">sudo dnf search pip</pre>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="359" src="https://www.osradar.com/wp-content/uploads/2021/06/1-5-1024x359.png" alt="1.- Searching for PIP on Fedora 34" class="wp-image-30551" srcset="https://www.osradar.com/wp-content/uploads/2021/06/1-5-1024x359.png 1024w, https://www.osradar.com/wp-content/uploads/2021/06/1-5-300x105.png 300w, https://www.osradar.com/wp-content/uploads/2021/06/1-5-768x269.png 768w, https://www.osradar.com/wp-content/uploads/2021/06/1-5-696x244.png 696w, https://www.osradar.com/wp-content/uploads/2021/06/1-5-1068x375.png 1068w, https://www.osradar.com/wp-content/uploads/2021/06/1-5.png 1311w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>1.- Searching for PIP on Fedora 34</figcaption></figure>



<p>And you will get a wide range of output per screen, but the best results are in the following one:</p>



<p>In this case, the package is <code>python3-pip</code> which we will have to install using DNF</p>



<pre class="wp-block-preformatted">sudo dnf install python3-pip</pre>



<p>This will start the installation which should not take too long.</p>



<p>In the end, you can check the installed version</p>



<pre class="wp-block-preformatted">pip3 --version</pre>



<p>Sample Output</p>



<pre class="wp-block-preformatted">pip 21.0.1 from /usr/lib/python3.9/site-packages/pip (python 3.9)</pre>



<p>Although PIP is ready to use, you should always work with the latest version available. So, using it we can upgrade to the latest version.</p>



<p>So, to update PIP, run the following command:</p>



<pre class="wp-block-preformatted">sudo -H pip3 install -U pip
WARNING: Running pip install with root privileges is generally not a good idea. Try `pip3 install --user` instead.
Requirement already satisfied: pip in /usr/lib/python3.9/site-packages (21.0.1)
Collecting pip
  Downloading pip-21.1.2-py3-none-any.whl (1.5 MB)
     |████████████████████████████████| 1.5 MB 7.4 MB/s 
Installing collected packages: pip
Successfully installed pip-21.1.2</pre>



<p>This way, we will have the latest version of PIP.</p>



<pre class="wp-block-preformatted">pip3 --version<br>pip 21.1.2 from /usr/local/lib/python3.9/site-packages/pip (python 3.9)</pre>



<p>Now yes, PIP is ready for battle.</p>



<h2>Conclusion</h2>



<p>PIP is a useful and basic tool in daily work with Python. So installing it should be a must for almost any programmer and sysadmin. As you may have noticed, the process is quite simple and anyone can complete it without any problem.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-pip-fedora-34/">How to install PIP on Fedora 34?</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-pip-fedora-34/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Install Nginx on Fedora 34</title>
		<link>https://www.osradar.com/install-nginx-fedora-34/</link>
					<comments>https://www.osradar.com/install-nginx-fedora-34/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Tue, 08 Jun 2021 23:11:00 +0000</pubDate>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[Fedora 30]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[Nginx]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[web server]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=12189</guid>

					<description><![CDATA[<p>Nginx is one of the most popular web servers in the world. Even on a par with Apache. We already know that it stands out for its speed and ability to handle large requests. Now, I&#8217;ll show you how to install Nginx on Fedora 34. Fedora 34 is a distribution sponsored by RHEL which makes [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-nginx-fedora-34/">Install Nginx on Fedora 34</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Nginx is one of the most popular web servers in the world. Even on a par with Apache. We already know that it stands out for its speed and ability to handle large requests. Now, I&#8217;ll show you how to install Nginx on Fedora 34.</p>
<p>Fedora 34 is a distribution sponsored by <a href="https://www.osradar.com/rhel-8-is-available/" target="_blank" rel="noopener noreferrer">RHEL</a> which makes it inherit several of its security policies. Of course Fedora 34 is oriented to the average Linux user, so no major security policies are required. However, it is one of the most secure Linux distributions out there. So it is very common to see that there are Linux developers who choose it for their web projects. This is where Nginx becomes almost indispensable.</p>
<p>About Nginx we have talked a lot on <a href="https://www.osradar.com/tag/nginx/" target="_blank" rel="noopener noreferrer">our website</a>, however, I will briefly explain that it is an open source web server. Its main advantage over Apache is that it is <a href="https://www.nginx.com/blog/testing-the-performance-of-nginx-and-nginx-plus-web-servers/" target="_blank" rel="noopener noreferrer">very lightweight</a> and response times to large requests are very low. That is, it is ideal if you are going to handle a lot of simulated connections. Or yes, the web application is complex and requires many requests to the server. In any case, we are in the presence of a fantastic web server. So, let us get Nginx on Fedora 34.</p>
<h2>Install Nginx on Fedora 34</h2>
<p>First of all, you need to know the name of the particular package. To do this, we&#8217;ll use dnf to get it. So, open a terminal and run:</p>
<pre>:~$ sudo dnf search nginx</pre>
<figure id="attachment_30501" aria-describedby="caption-attachment-30501" style="width: 1279px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-30501" src="https://www.osradar.com/wp-content/uploads/2019/05/1_11.png" alt="1.- Searching for Nginx on Fedora 34" width="1279" height="587" srcset="https://www.osradar.com/wp-content/uploads/2019/05/1_11.png 1279w, https://www.osradar.com/wp-content/uploads/2019/05/1_11-300x138.png 300w, https://www.osradar.com/wp-content/uploads/2019/05/1_11-1024x470.png 1024w, https://www.osradar.com/wp-content/uploads/2019/05/1_11-768x352.png 768w, https://www.osradar.com/wp-content/uploads/2019/05/1_11-696x319.png 696w, https://www.osradar.com/wp-content/uploads/2019/05/1_11-1068x490.png 1068w" sizes="(max-width: 1279px) 100vw, 1279px" /><figcaption id="caption-attachment-30501" class="wp-caption-text">1.- Searching for Nginx on Fedora 34</figcaption></figure>
<p>As you can see in the image, there are several packages related to <code>nginx</code> in the Fedora 34 repositories. However, we need to install the <code>nginx</code> package.</p>
<pre>:~$ sudo dnf install nginx</pre>
<figure id="attachment_30502" aria-describedby="caption-attachment-30502" style="width: 1365px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-30502" src="https://www.osradar.com/wp-content/uploads/2019/05/2_222.png" alt="2.- Install Nginx on Fedora 34" width="1365" height="611" srcset="https://www.osradar.com/wp-content/uploads/2019/05/2_222.png 1365w, https://www.osradar.com/wp-content/uploads/2019/05/2_222-300x134.png 300w, https://www.osradar.com/wp-content/uploads/2019/05/2_222-1024x458.png 1024w, https://www.osradar.com/wp-content/uploads/2019/05/2_222-768x344.png 768w, https://www.osradar.com/wp-content/uploads/2019/05/2_222-696x312.png 696w, https://www.osradar.com/wp-content/uploads/2019/05/2_222-1068x478.png 1068w" sizes="(max-width: 1365px) 100vw, 1365px" /><figcaption id="caption-attachment-30502" class="wp-caption-text">2.- Install Nginx on Fedora 34</figcaption></figure>
<p>After confirm the process, the download and installation will begin.</p>
<p>Then, when the installation is finished, we must start the Nginx service in order for it to work. To do this, type the following command:</p>
<pre>:~$ sudo systemctl start nginx</pre>
<p>Also, if you want nginx to start with the system, run this command:</p>
<pre>:~$ sudo systemctl enable nginx</pre>
<p>Next, open your favorite web browser and go to http://localhost and you will see this.</p>
<figure id="attachment_30503" aria-describedby="caption-attachment-30503" style="width: 1354px" class="wp-caption alignnone"><img loading="lazy" class="wp-image-30503 size-full" src="https://www.osradar.com/wp-content/uploads/2019/05/d.png" alt="3.- Nginx working on Fedora 34" width="1354" height="669" srcset="https://www.osradar.com/wp-content/uploads/2019/05/d.png 1354w, https://www.osradar.com/wp-content/uploads/2019/05/d-300x148.png 300w, https://www.osradar.com/wp-content/uploads/2019/05/d-1024x506.png 1024w, https://www.osradar.com/wp-content/uploads/2019/05/d-768x379.png 768w, https://www.osradar.com/wp-content/uploads/2019/05/d-696x344.png 696w, https://www.osradar.com/wp-content/uploads/2019/05/d-1068x528.png 1068w" sizes="(max-width: 1354px) 100vw, 1354px" /><figcaption id="caption-attachment-30503" class="wp-caption-text">3.- Nginx working on Fedora 34</figcaption></figure>
<p>So, that is it.</p>
<h2>Conclusion</h2>
<p>Installing Nginx is very simple but it is good to keep it in mind especially if you are new to this Linux distribution. Nginx is very powerful and makes many websites agile to the many requests made to it.</p>
<p>Tell us, do you like Nginx? did you find the post useful?</p>
<p>Please share this post with your friends.</p>


<p></p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-nginx-fedora-34/">Install Nginx on Fedora 34</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-nginx-fedora-34/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to install the LAMP stack on Fedora 34</title>
		<link>https://www.osradar.com/install-lamp-stack-on-fedora-34/</link>
					<comments>https://www.osradar.com/install-lamp-stack-on-fedora-34/#comments</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Fri, 04 Jun 2021 23:11:00 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[fedora 31]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[httpd]]></category>
		<category><![CDATA[mariadb]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[Tutorial]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=15686</guid>

					<description><![CDATA[<p>Fedora is one of the most popular Linux distributions that exist, and is also used by developers to do their jobs. In this sense, web development is in full swing and more and more developers are focusing on these applications. But if you&#8217;re going to develop or serve web applications, it is a good idea [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-lamp-stack-on-fedora-34/">How to install the LAMP stack on Fedora 34</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Fedora is one of the most popular Linux distributions that exist, and is also used by developers to do their jobs. In this sense, web development is in full swing and more and more developers are focusing on these applications. But if you&#8217;re going to develop or serve web applications, it is a good idea to at least have a working LAMP server. <strong>That is why, in this post, we will show you how to install LAMP stack on Fedora 34.</strong></p>
<h2>What is the LAMP stack?</h2>
<p>The <a href="https://en.wikipedia.org/wiki/LAMP_(software_bundle)" target="_blank" rel="noopener noreferrer">LAMP</a> stack is the union of several application components that allow to have a functional web server. With LAMP it is possible to develop and deploy web applications created in PHP.</p>
<h2>Installing the LAMP stack on Fedora 34</h2>
<h3>(L)inux</h3>
<p>The first component is Linux. In this case, we are using Fedora as the Linux distribution. <a href="https://www.osradar.com/fedora-31-available/" target="_blank" rel="noopener noreferrer">Fedora</a> is quite stable for these purposes, but it also serves to host applications as if it were a server.</p>
<h3>(A)pache</h3>
<p>The second component is the HTTP server. The easiest server to use and also one of the most popular is HTTPD which is the Apache project server. Fortunately, it is found in the official repositories of the distribution, which facilitates the installation.</p>
<p>To do this, open a terminal and execute the following command:</p>
<pre>:~$ sudo dnf install httpd</pre>
<p>Before you can use the server, you must initialize the service. In other words, you have to start it. To do this, we use systemd to do it.</p>
<pre>:~$ sudo systemctl start httpd</pre>
<p>If you want the service to start along with the system, then run this command:</p>
<pre>:~$ sudo systemctl enable httpd</pre>
<p>Now each time the system is started, httpd will be started.</p>
<p>However, Fedora values security very much and will not allow httpd to run if port 80 and 443 are not opened in the firewall. So let&#8217;s do it.</p>
<pre>$ sudo firewall-cmd zone=public add-service=http permanent<br>success<br>$ sudo firewall-cmd reload<br>success</pre>
<p>Now, open your web browser and go to <code>http://your-server</code> or <code>http://localhost</code> depending on where you are installing LAMP. You willl see the following:</p>
<figure id="attachment_30366" aria-describedby="caption-attachment-30366" style="width: 1354px" class="wp-caption alignnone"><img loading="lazy" class="wp-image-30366 size-full" src="https://www.osradar.com/wp-content/uploads/2019/11/1-25.png" alt="1.- Httpd running on Fedora 34" width="1354" height="669" srcset="https://www.osradar.com/wp-content/uploads/2019/11/1-25.png 1354w, https://www.osradar.com/wp-content/uploads/2019/11/1-25-300x148.png 300w, https://www.osradar.com/wp-content/uploads/2019/11/1-25-1024x506.png 1024w, https://www.osradar.com/wp-content/uploads/2019/11/1-25-768x379.png 768w, https://www.osradar.com/wp-content/uploads/2019/11/1-25-696x344.png 696w, https://www.osradar.com/wp-content/uploads/2019/11/1-25-1068x528.png 1068w" sizes="(max-width: 1354px) 100vw, 1354px" /><figcaption id="caption-attachment-30366" class="wp-caption-text">1.- Httpd running on Fedora 34</figcaption></figure>
<p>That means Apache is functioning perfectly.</p>
<h3>Installing LAMP stack on Fedora 34 &#8211; (P)hp</h3>
<p>Now for web applications to run smoothly, you need to install PHP. PHP is one of the most popular languages for web programming. In fact, the vast majority of web applications are created with PHP. To install it along with its main modules, you have to execute the following command:</p>
<pre>:~$ sudo dnf install php php-common php-pecl-apcu php-cli php-pear php-pdo php-mysqlnd php-pgsql php-gd php-mbstring php-xml</pre>
<figure id="attachment_30367" aria-describedby="caption-attachment-30367" style="width: 1365px" class="wp-caption alignnone"><img loading="lazy" class="wp-image-30367 size-full" src="https://www.osradar.com/wp-content/uploads/2019/11/2-23.png" alt="2.- Installing PHP on Fedora 34" width="1365" height="714" srcset="https://www.osradar.com/wp-content/uploads/2019/11/2-23.png 1365w, https://www.osradar.com/wp-content/uploads/2019/11/2-23-300x157.png 300w, https://www.osradar.com/wp-content/uploads/2019/11/2-23-1024x536.png 1024w, https://www.osradar.com/wp-content/uploads/2019/11/2-23-768x402.png 768w, https://www.osradar.com/wp-content/uploads/2019/11/2-23-696x364.png 696w, https://www.osradar.com/wp-content/uploads/2019/11/2-23-1068x559.png 1068w" sizes="(max-width: 1365px) 100vw, 1365px" /><figcaption id="caption-attachment-30367" class="wp-caption-text">2.- Installing PHP on Fedora 34</figcaption></figure>
<p>Now you have to test that PHP works properly, so you have to create a file with some php code and see if you run it.</p>
<pre>:~$ sudo nano /var/www/html/test.php</pre>
<p>And add the following:</p>
<pre>&lt;?php<br>phpinfo();<br>?&gt;</pre>
<p>If you do not have nano installed, it is better to do it with the following command:</p>
<pre>:~$ sudo dnf install nano</pre>
<p>For all this to work, you have to restart the server:</p>
<pre>:~$ sudo systemctl restart httpd</pre>
<p>And then, open it from the web browser. <code>http://your-server/test.php</code> or <code>http://localhost/test.php</code></p>
<figure id="attachment_30368" aria-describedby="caption-attachment-30368" style="width: 1354px" class="wp-caption alignnone"><img loading="lazy" class="wp-image-30368 size-full" src="https://www.osradar.com/wp-content/uploads/2019/11/3-20.png" alt="3.- Installing LAMP stack on Fedora 34" width="1354" height="669" srcset="https://www.osradar.com/wp-content/uploads/2019/11/3-20.png 1354w, https://www.osradar.com/wp-content/uploads/2019/11/3-20-300x148.png 300w, https://www.osradar.com/wp-content/uploads/2019/11/3-20-1024x506.png 1024w, https://www.osradar.com/wp-content/uploads/2019/11/3-20-768x379.png 768w, https://www.osradar.com/wp-content/uploads/2019/11/3-20-696x344.png 696w, https://www.osradar.com/wp-content/uploads/2019/11/3-20-1068x528.png 1068w" sizes="(max-width: 1354px) 100vw, 1354px" /><figcaption id="caption-attachment-30368" class="wp-caption-text">3.- Installing LAMP stack on Fedora 34</figcaption></figure>
<p>This means that PHP and Apache are working correctly.</p>
<h3>Installing LAMP stack on Fedora 34 &#8211; (M)ariaDB</h3>
<p><a href="https://www.osradar.com/tag/mariadb/" target="_blank" rel="noopener noreferrer">MariaDB</a> is a MySQL fork. Therefore, we are in the presence of a relational database management system. It is included in most existing Linux distributions. Also, it is perfectly compatible with MySQL and its commands as well as its engines. It is the last component of LAMP.</p>
<p>Keep in mind that MariaDB is used to store the data that applications require as they are being used. That is to say, no transactional system should be executed without a database manager. So it is vital to install it.</p>
<p>To do this, run the following command:</p>
<pre>:~$ sudo dnf install mariadb-server</pre>
<figure id="attachment_30369" aria-describedby="caption-attachment-30369" style="width: 1365px" class="wp-caption alignnone"><img loading="lazy" class="wp-image-30369 size-full" src="https://www.osradar.com/wp-content/uploads/2019/11/4-15.png" alt="4.- Installing MariaDB and LAMP stack on Fedora 34" width="1365" height="715" srcset="https://www.osradar.com/wp-content/uploads/2019/11/4-15.png 1365w, https://www.osradar.com/wp-content/uploads/2019/11/4-15-300x157.png 300w, https://www.osradar.com/wp-content/uploads/2019/11/4-15-1024x536.png 1024w, https://www.osradar.com/wp-content/uploads/2019/11/4-15-768x402.png 768w, https://www.osradar.com/wp-content/uploads/2019/11/4-15-696x365.png 696w, https://www.osradar.com/wp-content/uploads/2019/11/4-15-1068x559.png 1068w" sizes="(max-width: 1365px) 100vw, 1365px" /><figcaption id="caption-attachment-30369" class="wp-caption-text">4.- Installing MariaDB and LAMP stack on Fedora 34</figcaption></figure>
<p>Then, at the end of the installation, start the service as with Httpd.</p>
<pre>:~$ sudo systemctl start mariadb</pre>
<p>And if you want it to run at system startup, just run this command:</p>
<pre>:~$ sudo systemctl enable mariadb</pre>
<p>Now, you have to secure the installation with the mysql_secure_installation script. With this script you will be able to define a root password and other small configurations.</p>
<pre>:~$ sudo mysql_secure_installation</pre>
<p>After defining the root password you will be asked other configuration questions. I answered yes to everything.</p>
<pre class="">Remove anonymous users? [Y/n] Y 
Disallow root login remotely? [Y/n] Y
Remove test database and access to it? [Y/n] Y
Reload privilege tables now? [Y/n] y</pre>
<p>Now, you have the LAMP stack installed in Fedora 34 without problems.</p>
<h2>Conclusion</h2>
<p>The LAMP stack is a set of vital applications to have a basic and functional web server. It is the basis for most web applications. And it is necessary for the development of applications and to serve them. Each one of the elements of the stack can be installed without problems but its administration would give for many articles. Anyway today you have learned to deploy it in its basic form.</p>


<p></p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-lamp-stack-on-fedora-34/">How to install the LAMP stack on Fedora 34</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-lamp-stack-on-fedora-34/feed/</wfw:commentRss>
			<slash:comments>3</slash:comments>
		
		
			</item>
		<item>
		<title>How to install the latest version of GIT on Fedora 34 / 33?</title>
		<link>https://www.osradar.com/install-the-latest-version-git-fedora/</link>
					<comments>https://www.osradar.com/install-the-latest-version-git-fedora/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Wed, 26 May 2021 22:12:00 +0000</pubDate>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Desktop]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[fedora 31]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[latest version]]></category>
		<category><![CDATA[Tutorial]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=15741</guid>

					<description><![CDATA[<p>In this short post, you will learn how to install the latest version of Git on Fedora 34 step by step. As time goes by, the versions of the programs that come in the repositories of the Linux distributions become old. Similarly, program developers often release new versions with new features or bug fixes and [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-the-latest-version-git-fedora/">How to install the latest version of GIT on Fedora 34 / 33?</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>In this short post,<strong> you will learn how to install the latest version of Git on <a href="https://www.osradar.com/from-fedora-33-fedora-34/" target="_blank" rel="noreferrer noopener">Fedora 34</a> step by step</strong>.</p>



<p>As time goes by, the versions of the programs that come in the repositories of the Linux distributions become old. Similarly, program developers often release new versions with new features or bug fixes and we miss them.</p>



<p><a href="https://git-scm.com/">Git</a> is a program with quite active development and that requires to be always updated to have news and security fixes. So it is better to do it. And the best way to do it is to compile the source code of the application yourself.</p>



<p>Let us get started.</p>



<h2>Installing the latest version of GIT on Fedora 34/33?</h2>



<p>A great way to get the latest stable version of any open source program is to compile the source code. Don&#8217;t be frightened by the word compile, in fact it&#8217;s pretty easy to do.</p>



<p>Open a terminal session and install the necessary libraries to compile GIT. Some are SSL, CURL, ZLIB and others.</p>



<pre class="wp-block-preformatted">:~$ sudo dnf install curl-devel expat-devel gettext-devel openssl-devel zlib-devel</pre>



<figure class="wp-block-image alignnone size-large size-full wp-image-15866"><img loading="lazy" width="1024" height="460" src="https://www.osradar.com/wp-content/uploads/2021/04/1_1-1024x460.png" alt="1.- Installing some required packages" class="wp-image-30282" srcset="https://www.osradar.com/wp-content/uploads/2021/04/1_1-1024x460.png 1024w, https://www.osradar.com/wp-content/uploads/2021/04/1_1-300x135.png 300w, https://www.osradar.com/wp-content/uploads/2021/04/1_1-768x345.png 768w, https://www.osradar.com/wp-content/uploads/2021/04/1_1-696x313.png 696w, https://www.osradar.com/wp-content/uploads/2021/04/1_1-1068x480.png 1068w, https://www.osradar.com/wp-content/uploads/2021/04/1_1.png 1365w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>1.- Installing some required packages</figcaption></figure>



<p>In a normal Fedora 33 installation the basic compiling tools are not incorporated. These tools are necessary to comply with our tutorial. To install them, run the following command:</p>



<pre class="wp-block-preformatted">:~$ sudo dnf groupinstall "Development Tools"</pre>



<figure class="wp-block-image alignnone size-large wp-image-15867 size-full"><img loading="lazy" width="1024" height="536" src="https://www.osradar.com/wp-content/uploads/2021/04/2_2-1024x536.png" alt="2.- Installing the development tools" class="wp-image-30283" srcset="https://www.osradar.com/wp-content/uploads/2021/04/2_2-1024x536.png 1024w, https://www.osradar.com/wp-content/uploads/2021/04/2_2-300x157.png 300w, https://www.osradar.com/wp-content/uploads/2021/04/2_2-768x402.png 768w, https://www.osradar.com/wp-content/uploads/2021/04/2_2-696x364.png 696w, https://www.osradar.com/wp-content/uploads/2021/04/2_2-1068x559.png 1068w, https://www.osradar.com/wp-content/uploads/2021/04/2_2.png 1365w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>2.- Installing the development tools</figcaption></figure>



<p>We will now proceed to download the GIT source code using wget. So make sure you have it installed:</p>



<pre class="wp-block-preformatted">:~$ sudo dnf install wget</pre>



<p>And then download the GIT source code. At the time of this tutorial, the most recent version is 2.31.1. But surely in the future, it will change.</p>



<pre class="wp-block-preformatted">:~$ wget https://mirrors.edge.kernel.org/pub/software/scm/git/git-2.31.1.tar.gz</pre>



<p>Then, unzip the file using tar.</p>



<pre class="wp-block-preformatted">:~$ tar -zxf git-2.31.1.tar.gz</pre>



<pre class="wp-block-preformatted">A folder named git-2.31.1 will be created. Access it and start the process.

:~$ cd git-2.31.1
:~$ make prefix=/usr/local all</pre>



<p>Finally, install it.</p>



<pre class="wp-block-preformatted">:~$ sudo make prefix=/usr/local install</pre>



<p>So, that is it. Just use GIT and check the installed version.</p>



<pre class="wp-block-preformatted">:~$ git --version
git version 2.31.1</pre>



<h2>Conclusion</h2>



<p>GIT is a basic application for a developer and getting the latest stable version is a great help to enjoy this tool to the fullest. Let&#8217;s think that this trial will become more valid when recent versions start to come out and the version of the official repositories becomes obsolete.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-the-latest-version-git-fedora/">How to install the latest version of GIT on Fedora 34 / 33?</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-the-latest-version-git-fedora/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How install MongoDB on Fedora 34 / 33?</title>
		<link>https://www.osradar.com/install-mongodb-fedora-33/</link>
					<comments>https://www.osradar.com/install-mongodb-fedora-33/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Tue, 25 May 2021 03:43:00 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Unix]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[mongodb]]></category>
		<category><![CDATA[NoSQL]]></category>
		<category><![CDATA[Programming]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=29133</guid>

					<description><![CDATA[<p>Currently, NoSQL Database managers are being widely used by developers. Since it has many advantages and their projects are the most open source. And MongoDB is one of the most popular managers. So, this article is about how to install MongoDB in Fedora 34 / 33. MongoDB allows your teams to easily organize, use and [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-mongodb-fedora-33/">How install MongoDB on Fedora 34 / 33?</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>Currently, NoSQL Database managers are being widely used by developers. Since it has many advantages and their projects are the most open source. And MongoDB is one of the most popular managers. So, this article is about how to install MongoDB in Fedora 34 / 33.</p>



<p><a href="https://www.mongodb.com/">MongoDB</a> allows your teams to easily organize, use and enrich data – in real time, anywhere. MongoDB is a NoSQL and document-oriented database manager. In short, instead of saving the data in the record as the SQL database, it saves them in documents with BSON format which is a binary representation of JSON.</p>



<p>In the world of unrelated SQL database MongoDB is perhaps the most popular, however, it can be used by very different applications that require a semi-structured data collection. On the other hand, its use in transactional systems is not recommended as MongoDB does not support transactions.</p>



<p>That’s why I’m going to teach you how to install MongoDB on the latest stable versions of Fedora, Fedora 34 / 33.</p>



<h2 id="install-mongodb-on-fedora-33"><a href="#install-mongodb-on-fedora-33" name="install-mongodb-on-fedora-33"></a>Install MongoDB on Fedora 33</h2>



<p>It is possible to install MongoDB on Fedora 34 / 33 through the <a href="https://www.osradar.com/installing-rpm-on-ubuntu/" target="_blank" rel="noreferrer noopener">RPM packages</a> that can be downloaded and installed from the project’s website.</p>



<p>However, the most efficient method is to install from the official MongoDB repository which helps to integrate the application with the system.</p>



<p>So, for ease of use, install the nano text editor.</p>



<pre class="wp-block-preformatted">sudo dnf install nano</pre>



<p>And edit a text file to add the MongoDB repository by adding the following content</p>



<pre class="wp-block-preformatted">sudo nano /etc/yum.repos.d/mongodb.repo</pre>



<pre class="wp-block-preformatted">[mongodb-org-4.4]
name=MongoDB Repository
baseurl=https://repo.mongodb.org/yum/redhat/8/mongodb-org/4.4/x86_64/
gpgcheck=1
enabled=1
gpgkey=https://www.mongodb.org/static/pgp/server-4.4.asc</pre>



<figure class="wp-block-image size-large"><img loading="lazy" width="982" height="227" src="https://www.osradar.com/wp-content/uploads/2021/03/6-2.png" alt=" Configuring the MongoDB repository" class="wp-image-30202" srcset="https://www.osradar.com/wp-content/uploads/2021/03/6-2.png 982w, https://www.osradar.com/wp-content/uploads/2021/03/6-2-300x69.png 300w, https://www.osradar.com/wp-content/uploads/2021/03/6-2-768x178.png 768w, https://www.osradar.com/wp-content/uploads/2021/03/6-2-696x161.png 696w" sizes="(max-width: 982px) 100vw, 982px" /><figcaption> Configuring the MongoDB repository</figcaption></figure>



<p>Save the changes and close the text editor.</p>



<p>Now you can install MongoDB on Fedora 34 / 33 by running</p>



<pre class="wp-block-preformatted">sudo dnf install mongodb-org</pre>



<p>After installation, a new service is created for Fedora 34 / 33.</p>



<p>So, refresh the list of system daemons</p>



<pre class="wp-block-preformatted">sudo systemctl daemon-reload</pre>



<p>Now start it up:</p>



<pre class="wp-block-preformatted">sudo systemctl start mongod</pre>



<p>And then check the status of the service</p>



<pre class="wp-block-preformatted">sudo systemctl status mongod
● mongod.service - MongoDB Database Server
      Loaded: loaded (/usr/lib/systemd/system/mongod.service; enabled; vendor preset: disabled)
      Active: active (running) since Wed 2021-05-19 23:15:47 CEST; 5s ago
        Docs: https://docs.mongodb.org/manual
     Process: 2212 ExecStartPre=/usr/bin/mkdir -p /var/run/mongodb (code=exited, status=0/SUCCESS)
     Process: 2213 ExecStartPre=/usr/bin/chown mongod:mongod /var/run/mongodb (code=exited, status=0/SUCCESS)
     Process: 2214 ExecStartPre=/usr/bin/chmod 0755 /var/run/mongodb (code=exited, status=0/SUCCESS)
     Process: 2215 ExecStart=/usr/bin/mongod $OPTIONS (code=exited, status=0/SUCCESS)
    Main PID: 2217 (mongod)
      Memory: 57.6M
         CPU: 822ms
      CGroup: /system.slice/mongod.service
              └─2217 /usr/bin/mongod -f /etc/mongod.conf
 May 19 23:15:46 osradar systemd[1]: Starting MongoDB Database Server…
 May 19 23:15:46 osradar mongod[2215]: about to fork child process, waiting until server is ready for connections.
 May 19 23:15:46 osradar mongod[2217]: forked process: 2217
 May 19 23:15:47 osradar mongod[2215]: child process started successfully, parent exiting
 May 19 23:15:47 osradar systemd[1]: Started MongoDB Database Server.
</pre>



<p>Now check the version of MongoDB that you have installed</p>



<pre class="wp-block-preformatted">mongod -version
db version v4.4.4
 Build Info: {
     "version": "4.4.4",
     "gitVersion": "8db30a63db1a9d84bdcad0c83369623f708e0397",
     "openSSLVersion": "OpenSSL 1.1.1k  FIPS 25 Mar 2021",
     "modules": [],
     "allocator": "tcmalloc",
     "environment": {
         "distmod": "rhel80",
         "distarch": "x86_64",
         "target_arch": "x86_64"
     }
 }</pre>



<p>So, enjoy it.</p>



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



<p>So, MongoDB is a solution that is increasingly being taken into account by many developers worldwide. Its installation in Fedora 34 / 33 is relatively simple.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-mongodb-fedora-33/">How install MongoDB on Fedora 34 / 33?</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-mongodb-fedora-33/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to install the Development and build tools on Fedora 34 / 33?</title>
		<link>https://www.osradar.com/install-development-build-tools-fedora/</link>
					<comments>https://www.osradar.com/install-development-build-tools-fedora/#comments</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Sat, 15 May 2021 02:41:00 +0000</pubDate>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Desktop]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Unix]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tutorial]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=27748</guid>

					<description><![CDATA[<p>In this very short post, you will learn how to install a series of development and build tools on Fedora 34 / 33. These tools are essential to perform tasks like installing packages from the source code. Or some programming tasks such as package creation. If you are an application developer and need to package [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-development-build-tools-fedora/">How to install the Development and build tools on Fedora 34 / 33?</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>In this very short post, you will learn how to install a series of development and build tools on Fedora 34 / 33. These tools are essential to perform tasks like installing packages from the source code. Or some programming tasks such as package creation.</p>



<p>If you are an application developer and need to package it for a distribution like Fedora, Debian or Ubuntu, you need some tools. Some of these tools are considered to be essential for the process.</p>



<p>So, all these tools are contained in the package&nbsp;<code>"Development Tools</code>&#8220;. Other important packages will be installed there. Some of them are:</p>



<ul><li><a href="https://gcc.gnu.org/" target="_blank" rel="noreferrer noopener">GCC</a> the GNU C language compiler which is a mainstay for developing various languages and installing programs.</li><li>make which allows us to compile programs from source code.</li><li>G++ the GNU compiler for the C++ language which is widely used in&nbsp;<a href="https://www.osradar.com/install-qtcreator-on-ubuntu-18-04/" target="_blank" rel="noreferrer noopener">QT applications.</a></li></ul>



<p>And many more.</p>



<h2>Install the Development and build tools on Fedora 34/ 33</h2>



<p>These packages are not the dependencies of any program so you can install them from the source code or create new RPM packages. These packages are the basic tools that allow these operations. However, the libraries and the rest of the tools depend on each package you need to compile or create.</p>



<p>So, open a terminal and update the distribution:</p>



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



<p>And it carries out the installation by running:</p>



<pre class="wp-block-preformatted">sudo dnf groupinstall "Development Tools" "Development Libraries"</pre>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="536" src="https://www.osradar.com/wp-content/uploads/2021/01/1-16-1024x536.png" alt="1.- Install build packages Fedora 34 / 33" class="wp-image-30016" srcset="https://www.osradar.com/wp-content/uploads/2021/01/1-16-1024x536.png 1024w, https://www.osradar.com/wp-content/uploads/2021/01/1-16-300x157.png 300w, https://www.osradar.com/wp-content/uploads/2021/01/1-16-768x402.png 768w, https://www.osradar.com/wp-content/uploads/2021/01/1-16-696x364.png 696w, https://www.osradar.com/wp-content/uploads/2021/01/1-16-1068x559.png 1068w, https://www.osradar.com/wp-content/uploads/2021/01/1-16.png 1364w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>1.- Install build packages Fedora 34 / 33</figcaption></figure>



<p>And you will see a long list of packages to be installed. All are libraries and some tools for it. But the installation doesn&#8217;t have to take that long either.</p>



<p>In the end, it is possible to show the versions of the most popular tools like GCC, G++, or make.</p>



<pre class="wp-block-preformatted">make --version</pre>



<p>Output:</p>



<pre class="wp-block-preformatted">GNU Make 4.3
 Built for x86_64-redhat-linux-gnu
 Copyright (C) 1988-2020 Free Software Foundation, Inc.
 License GPLv3+: GNU GPL version 3 or later http://gnu.org/licenses/gpl.html
 This is free software: you are free to change and redistribute it.
 There is NO WARRANTY, to the extent permitted by law.</pre>



<pre class="wp-block-preformatted">gcc --version</pre>



<p>Sample Output</p>



<pre class="wp-block-preformatted">gcc (GCC) 11.0.1 20210324 (Red Hat 11.0.1-0)
 Copyright (C) 2021 Free Software Foundation, Inc.
 This is free software; see the source for copying conditions.  There is NO
 warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.</pre>



<pre class="wp-block-preformatted">g++ --version</pre>



<p>Output</p>



<pre class="wp-block-preformatted">g++ (GCC) 11.1.1 20210428 (Red Hat 11.1.1-1)
 Copyright (C) 2021 Free Software Foundation, Inc.
 This is free software; see the source for copying conditions.  There is NO
 warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.</pre>



<p>And now you have at least the basic packages to start the work.</p>



<h2>Conclusion</h2>



<p>The development and package building tools are very important in Fedora 34. Since many programs that are in the repositories depend on them and installing them can save us time.</p>



<p>On the other hand, they become quite necessary if we are developers or application packagers.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-development-build-tools-fedora/">How to install the Development and build tools on Fedora 34 / 33?</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-development-build-tools-fedora/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>How to install PostgreSQL on Fedora 34?</title>
		<link>https://www.osradar.com/install-postgresql-fedora-34/</link>
					<comments>https://www.osradar.com/install-postgresql-fedora-34/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Fri, 14 May 2021 03:11:00 +0000</pubDate>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Unix]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[postgresql]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[Tutorial]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=11983</guid>

					<description><![CDATA[<p>We are celebrating the launch of Fedora 34. So we are aware that many developers use it to do their daily work. So they probably need to install some database manager. We recently explained how to install Lamp in Fedora and there you could learn how to install MariaDB. However, it is true that many [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-postgresql-fedora-34/">How to install PostgreSQL on Fedora 34?</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><a href="https://www.osradar.com/fedora-34-released/" target="_blank" rel="noopener">We are celebrating the launch of Fedora 34</a>. So we are aware that many developers use it to do their daily work. So they probably need to install some database manager. We recently explained how to install Lamp in Fedora and there you could learn how to install MariaDB. However, it is true that many developers prefer to use PostgreSQL because of its performance. So, in this post, I will teach you how to install PostgreSQL on Fedora 34.</p>
<p>It is not necessary talk much about <a href="https://www.postgresql.org/" target="_blank" rel="noopener noreferrer">PostgreSQL</a>. However, very briefly I will explain you what it is. It is a <a href="https://www.osradar.com/tag/sql/" target="_blank" rel="noopener noreferrer">SQL</a> database manager, open source and well known by application developers. Mainly because it has a considerably superior performance to others like MariaDB or MySQL. So we will have enterprise power in a community program. Sounds good, no?</p>
<p>PostgreSQL has an updated repository for Fedora. However, due to the recent release of Fedora 34, version 11 is available. So in this sense we will have no problems.</p>
<h2>Install PostgreSQL on Fedora 34</h2>
<p>While PostgreSQL is an application, it has many additional libraries to extend its functionality. Or, to make it work with other programming languages such as <a href="https://www.osradar.com/integrate-the-javadoc-to-netbeans/" target="_blank" rel="noopener noreferrer">Java</a>, Python, C++ or PHP. In addition, we can have access to other libraries of the program for development.</p>
<p>So, first of all, I am going to use DNF the Fedora package manager to look for all PostgreSQL related packages.</p>
<pre>:~$ sudo dnf search postgresql</pre>
<p><figure id="attachment_29991" aria-describedby="caption-attachment-29991" style="width: 1196px" class="wp-caption alignnone"><img loading="lazy" class="wp-image-29991 size-full" src="https://www.osradar.com/wp-content/uploads/2019/05/1-17.png" alt="Using DNF for search PostgreSQL" width="1196" height="709" srcset="https://www.osradar.com/wp-content/uploads/2019/05/1-17.png 1196w, https://www.osradar.com/wp-content/uploads/2019/05/1-17-300x178.png 300w, https://www.osradar.com/wp-content/uploads/2019/05/1-17-1024x607.png 1024w, https://www.osradar.com/wp-content/uploads/2019/05/1-17-768x455.png 768w, https://www.osradar.com/wp-content/uploads/2019/05/1-17-696x413.png 696w, https://www.osradar.com/wp-content/uploads/2019/05/1-17-1068x633.png 1068w" sizes="(max-width: 1196px) 100vw, 1196px" /><figcaption id="caption-attachment-29991" class="wp-caption-text">Using DNF for search PostgreSQL</figcaption></figure></p>
<p>As you can see, there are many packages related to PostgreSQL. But as I said before, they refer to libraries needed to extend the functionality.</p>
<p>Now, let&#8217;s install it.</p>
<pre>:~$ sudo dnf install postgresql-server</pre>
<p><figure id="attachment_29992" aria-describedby="caption-attachment-29992" style="width: 1365px" class="wp-caption alignnone"><img loading="lazy" class="wp-image-29992 size-full" src="https://www.osradar.com/wp-content/uploads/2019/05/2-16.png" alt="2.- Install PostgreSQL on Fedora 34" width="1365" height="485" srcset="https://www.osradar.com/wp-content/uploads/2019/05/2-16.png 1365w, https://www.osradar.com/wp-content/uploads/2019/05/2-16-300x107.png 300w, https://www.osradar.com/wp-content/uploads/2019/05/2-16-1024x364.png 1024w, https://www.osradar.com/wp-content/uploads/2019/05/2-16-768x273.png 768w, https://www.osradar.com/wp-content/uploads/2019/05/2-16-696x247.png 696w, https://www.osradar.com/wp-content/uploads/2019/05/2-16-1068x379.png 1068w" sizes="(max-width: 1365px) 100vw, 1365px" /><figcaption id="caption-attachment-29992" class="wp-caption-text">2.- Install PostgreSQL on Fedora 34</figcaption></figure></p>
<p>Then you have to prepare PostgreSQL for the first use. So, we have to init the database and then, start the service. After that, test it.</p>
<pre>:~$ sudo /usr/bin/postgresql-setup --initdb</pre>
<p><figure id="attachment_29993" aria-describedby="caption-attachment-29993" style="width: 736px" class="wp-caption alignnone"><img loading="lazy" class="wp-image-29993 size-full" src="https://www.osradar.com/wp-content/uploads/2019/05/3-14.png" alt="3.- Initialize the sample database" width="736" height="148" srcset="https://www.osradar.com/wp-content/uploads/2019/05/3-14.png 736w, https://www.osradar.com/wp-content/uploads/2019/05/3-14-300x60.png 300w, https://www.osradar.com/wp-content/uploads/2019/05/3-14-696x140.png 696w" sizes="(max-width: 736px) 100vw, 736px" /><figcaption id="caption-attachment-29993" class="wp-caption-text">3.- Initialize the sample database</figcaption></figure></p>
<p>Next, enable and start the service.</p>
<pre>:~$ sudo systemctl enable postgresql
Created symlink /etc/systemd/system/multi-user.target.wants/postgresql.service → /usr/lib/systemd/system/postgresql.service.
:~$ sudo systemctl start postgresql</pre>
<p>Now, test the installation.</p>
<pre>:~$ sudo su - postgres</pre>
<p>And access to the PostgreSQL console.</p>
<pre>:~$ psql</pre>
<p>Then, list all databases.</p>
<pre>:~$ \l</pre>
<p><figure id="attachment_29994" aria-describedby="caption-attachment-29994" style="width: 960px" class="wp-caption alignnone"><img loading="lazy" class="wp-image-29994 size-full" src="https://www.osradar.com/wp-content/uploads/2019/05/4-11.png" alt="4.- PostgreSQL is correctly installed on Fedora 34" width="960" height="309" srcset="https://www.osradar.com/wp-content/uploads/2019/05/4-11.png 960w, https://www.osradar.com/wp-content/uploads/2019/05/4-11-300x97.png 300w, https://www.osradar.com/wp-content/uploads/2019/05/4-11-768x247.png 768w, https://www.osradar.com/wp-content/uploads/2019/05/4-11-696x224.png 696w" sizes="(max-width: 960px) 100vw, 960px" /><figcaption id="caption-attachment-29994" class="wp-caption-text">4.- PostgreSQL is correctly installed on Fedora 34</figcaption></figure></p>
<p>So, PostgreSQL is correctly installed.</p>
<h2>Conclusion</h2>
<p>PostgreSQL is a great database manager and today you have learned how to install it in Fedora 34. So as you can see it&#8217;s quite easy, just share this post with your friends.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-postgresql-fedora-34/">How to install PostgreSQL on Fedora 34?</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-postgresql-fedora-34/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to install MySQL on Fedora 34/33?</title>
		<link>https://www.osradar.com/install-mysql-fedora/</link>
					<comments>https://www.osradar.com/install-mysql-fedora/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Thu, 13 May 2021 06:25:00 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[data]]></category>
		<category><![CDATA[Databases]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[fedora 31]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[SQL]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=15192</guid>

					<description><![CDATA[<p>Fedora is a great distribution. It is a very used distribution although not as much as Ubuntu or Linux Mint. However, it is still a reference for its bold innovations. Well, many developers choose it to carry out their projects or to incursionar in the programming. So, learning to install MySQL on Fedora 34/33 becomes [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-mysql-fedora/">How to install MySQL on Fedora 34/33?</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><a href="https://www.osradar.com/fedora-31-available/" target="_blank" rel="noopener noreferrer">Fedora</a> is a great distribution. It is a very used distribution although not as much as Ubuntu or Linux Mint. However, it is still a reference for its bold innovations. Well, many developers choose it to carry out their projects or to incursionar in the programming. So, learning to install MySQL on Fedora 34/33 becomes quite necessary for this purpose. So that&#8217;s what this article is all about.</p>
<p>As we already know since Oracle took over MySQL many Linux distributions, they took it out of their official repositories. This resulted in the incorporation of a fork called <a href="https://osradar.com/tag/mariadb/" target="_blank" rel="noopener noreferrer">MariaDB</a>. In terms of compatibility everything is guaranteed but it is true that many developers still prefer to use MySQL. So, <strong>you have to use another repository for it</strong>.</p>
<h2>Install MySQL on Fedora 34/33</h2>
<p><a href="https://www.oracle.com/" target="_blank" rel="noopener noreferrer">Oracle</a> provides us with a repository to install <a href="https://osradar.com/tag/mysql/" target="_blank" rel="noopener noreferrer">MySQL</a>. Specifically, version 8.0 is loaded with interesting new features. So, the first step is to open a terminal session and execute the following command to add the MySQL repository.</p>
<p>For Fedora 34</p>
<pre>:~$ sudo dnf install https://dev.mysql.com/get/mysql80-community-release-fc34-1.noarch.rpm</pre>
<p>For Fedora 33:</p>
<pre>:~$ sudo dnf install https://dev.mysql.com/get/mysql80-community-release-fc33-1.noarch.rpm</pre>
<figure id="attachment_29986" aria-describedby="caption-attachment-29986" style="width: 1365px" class="wp-caption alignnone"><img loading="lazy" class="wp-image-29986 size-full" src="https://www.osradar.com/wp-content/uploads/2021/03/111.png" alt="1.- Adding the MySQL repository to Fedora 34/33" width="1365" height="575" srcset="https://www.osradar.com/wp-content/uploads/2021/03/111.png 1365w, https://www.osradar.com/wp-content/uploads/2021/03/111-300x126.png 300w, https://www.osradar.com/wp-content/uploads/2021/03/111-1024x431.png 1024w, https://www.osradar.com/wp-content/uploads/2021/03/111-768x324.png 768w, https://www.osradar.com/wp-content/uploads/2021/03/111-696x293.png 696w, https://www.osradar.com/wp-content/uploads/2021/03/111-1068x450.png 1068w" sizes="(max-width: 1365px) 100vw, 1365px" /><figcaption id="caption-attachment-29986" class="wp-caption-text">1.- Adding the MySQL repository to Fedora 34/33</figcaption></figure>
<p>Then, once the repository is correctly added, we can install MySQL with the following command:</p>
<pre>:~$ sudo dnf install mysql-community-server</pre>
<p>And already, but before using it you have to make a few small configurations.</p>
<h2>Using MySQL</h2>
<p>MySQL is already installed, but you have to start the service to use it. So, run this command:</p>
<pre>:~$ sudo systemctl start mysqld</pre>
<p>If you want MySQL to start along with the system, use this other command as well:</p>
<pre>:~$ sudo systemctl enable mysqld</pre>
<p>For security reasons, MySQL generates a temporary root key. Please note that MySQL has even stricter security policies than MariaDB.</p>
<p>Then, you have to show which is the temporary password generated to be able to run the <code>mysql_secure_installation</code> script and be able to set a definite root key.</p>
<p>To do this, use the following command:</p>
<pre>:~$ sudo cat /var/log/mysqld.log</pre>
<figure id="attachment_29987" aria-describedby="caption-attachment-29987" style="width: 1365px" class="wp-caption alignnone"><img loading="lazy" class="wp-image-29987 size-full" src="https://www.osradar.com/wp-content/uploads/2021/03/222222.png" alt="2.- Configuring MySQL before the first use" width="1365" height="355" srcset="https://www.osradar.com/wp-content/uploads/2021/03/222222.png 1365w, https://www.osradar.com/wp-content/uploads/2021/03/222222-300x78.png 300w, https://www.osradar.com/wp-content/uploads/2021/03/222222-1024x266.png 1024w, https://www.osradar.com/wp-content/uploads/2021/03/222222-768x200.png 768w, https://www.osradar.com/wp-content/uploads/2021/03/222222-696x181.png 696w, https://www.osradar.com/wp-content/uploads/2021/03/222222-1068x278.png 1068w" sizes="(max-width: 1365px) 100vw, 1365px" /><figcaption id="caption-attachment-29987" class="wp-caption-text">2.- Configuring MySQL before the first use</figcaption></figure>
<p>In the image you can see, the generated key. Remember that in each case, it is different.</p>
<p>Then we can use the <code>mysql_secure_installation</code> script. In this script we will be able to set the definitive root password and make other security settings for the server.</p>
<pre>:~$ sudo mysql_secure_installation</pre>
<p>Enter the temporary key you previously obtained and you will immediately be able to establish yours.</p>
<p>MySQL has a plugin that does not allow weak passwords, so it establishes a strong one with numbers, signs and combinations of lower and uppercase letters.</p>
<p>Then, answer the security questions as you prefer. I said yes to all of them.</p>
<figure id="attachment_15253" aria-describedby="caption-attachment-15253" style="width: 1106px" class="wp-caption alignnone"><img loading="lazy" class="wp-image-15253 size-full" src="https://www.osradar.com/wp-content/uploads/2019/11/4-e1620671953556.png" alt="3.- using the mysql_secure_installation script" width="1106" height="650" srcset="https://www.osradar.com/wp-content/uploads/2019/11/4-e1620671953556.png 1106w, https://www.osradar.com/wp-content/uploads/2019/11/4-e1620671953556-300x176.png 300w, https://www.osradar.com/wp-content/uploads/2019/11/4-e1620671953556-768x451.png 768w, https://www.osradar.com/wp-content/uploads/2019/11/4-e1620671953556-1024x602.png 1024w, https://www.osradar.com/wp-content/uploads/2019/11/4-e1620671953556-696x409.png 696w, https://www.osradar.com/wp-content/uploads/2019/11/4-e1620671953556-1068x628.png 1068w" sizes="(max-width: 1106px) 100vw, 1106px" /><figcaption id="caption-attachment-15253" class="wp-caption-text">3.- using the mysql_secure_installation script</figcaption></figure>
<p>Now, you can use MySQL without problems. To do this, access the console with this command:</p>
<pre>:~$ sudo mysql -u root -p</pre>
<figure id="attachment_15252" aria-describedby="caption-attachment-15252" style="width: 890px" class="wp-caption alignnone"><img loading="lazy" class="wp-image-15252 size-full" src="https://www.osradar.com/wp-content/uploads/2019/11/5-e1620672014231.png" alt="4.- MySQL on Fedora 34 / 33" width="890" height="293" srcset="https://www.osradar.com/wp-content/uploads/2019/11/5-e1620672014231.png 890w, https://www.osradar.com/wp-content/uploads/2019/11/5-e1620672014231-300x99.png 300w, https://www.osradar.com/wp-content/uploads/2019/11/5-e1620672014231-768x253.png 768w, https://www.osradar.com/wp-content/uploads/2019/11/5-e1620672014231-696x229.png 696w" sizes="(max-width: 890px) 100vw, 890px" /><figcaption id="caption-attachment-15252" class="wp-caption-text">4.- MySQL on Fedora 34 / 33</figcaption></figure>
<p>So, enjoy it.</p>
<h2>Conclusion</h2>
<p>MySQL continues to be the reference of the database relations handlers in Linux. However, as it is not present in the official repositories of Linux distributions, you have to take extra steps to install it.</p>


<p></p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-mysql-fedora/">How to install MySQL on Fedora 34/33?</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-mysql-fedora/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
