<?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>phpMyAdmin Archives - Linux Windows and android Tutorials</title>
	<atom:link href="https://www.osradar.com/tag/phpmyadmin/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.osradar.com</link>
	<description>tutorials and news and Seurity</description>
	<lastBuildDate>Sat, 08 May 2021 17:33:08 +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>Install PHPMyAdmin on Fedora 34/33</title>
		<link>https://www.osradar.com/install-phpmyadmin-fedora-33/</link>
					<comments>https://www.osradar.com/install-phpmyadmin-fedora-33/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Tue, 11 May 2021 01:46:00 +0000</pubDate>
				<category><![CDATA[Databases]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[phpMyAdmin]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=28731</guid>

					<description><![CDATA[<p>Hello, friends. Fedora is popular among developers and computer students. So it’s good to learn how to install PHPMyAdmin on Fedora 34/33 for those who don’t know it. PHPMyAdmin is an open-source application created in PHP that provides the administration of a MySQL or MariaDB database from a comfortable web interface. It is simply installed [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-phpmyadmin-fedora-33/">Install PHPMyAdmin 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>Hello, friends. Fedora is popular among developers and computer students. So it’s good to learn how to install PHPMyAdmin on Fedora 34/33 for those who don’t know it.</p>



<p><a href="https://www.phpmyadmin.net/" target="_blank" rel="noreferrer noopener">PHPMyAdmin</a> is an open-source application created in PHP that provides the administration of a MySQL or MariaDB database from a comfortable web interface. It is simply installed on the server, we make a few small configurations and that’s it. That’s it. Without consuming many resources you will have a quality application.<br>So, let’s get started.</p>



<h2 id="install-phpmyadmin-on-fedora-33"><a name="install-phpmyadmin-on-fedora-33" href="#install-phpmyadmin-on-fedora-33"></a>Install PHPMyAdmin on Fedora 34/33</h2>



<p>Fedora 33 is characterized by fairly comprehensive repositories. So we won’t have any problems installing it.</p>



<p>So, open a terminal and update <a href="https://www.osradar.com/fedora-33-available/" target="_blank" rel="noreferrer noopener">Fedora</a> 34/33.</p>



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



<p>After that, you can start the installation of PHPMyAdmin by running the following command</p>



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



<p>If you do not have a web server installed, the Apache web server will be installed during the process.</p>



<p>Therefore, we have to start and enable the Apache webserver to load along with the system.</p>



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



<p>After that, check the status of the service to see if everything is in order.</p>



<pre class="wp-block-preformatted">sudo systemctl status httpd
● httpd.service - The Apache HTTP Server
      Loaded: loaded (/usr/lib/systemd/system/httpd.service; disabled; vendor preset: disabled)
     Drop-In: /usr/lib/systemd/system/httpd.service.d
              └─php-fpm.conf
      Active: active (running) since Sat 2021-05-08 19:25:13 CEST; 5min ago
        Docs: man:httpd.service(8)
    Main PID: 2152 (httpd)
      Status: "Total requests: 49; Idle/Busy workers 100/0;Requests/sec: 0.14; Bytes served/sec: 5.4KB/sec"
       Tasks: 278 (limit: 2268)
      Memory: 21.2M
         CPU: 525ms
      CGroup: /system.slice/httpd.service
              ├─2152 /usr/sbin/httpd -DFOREGROUND
              ├─2153 /usr/sbin/httpd -DFOREGROUND
              ├─2154 /usr/sbin/httpd -DFOREGROUND
              ├─2155 /usr/sbin/httpd -DFOREGROUND
              ├─2156 /usr/sbin/httpd -DFOREGROUND
              └─2370 /usr/sbin/httpd -DFOREGROUND
 May 08 19:25:13 osradar systemd[1]: Starting The Apache HTTP Server…
 May 08 19:25:13 osradar httpd[2152]: AH00558: httpd: Could not reliably determine the server's fully qualified domain name, using ::1. Set the 'ServerName' directive gl>
 May 08 19:25:13 osradar systemd[1]: Started The Apache HTTP Server.
 May 08 19:25:13 osradar httpd[2152]: Server configured, listening on: port 80</pre>



<p>So all is well. Also, remember that port <code>80</code> has to be open to accept connections even if it is from localhost and logically if PHPMyAdmin is installed on a server.</p>



<pre class="wp-block-preformatted">firewall-cmd --add-port=80/tcp --permanent
Success
firewall-cmd --add-port=443/tcp --permanent
Success
firewall-cmd --reload
Success</pre>



<h3 id="configuring-phpmyadmin"><a href="#configuring-phpmyadmin" name="configuring-phpmyadmin"></a>Configuring PHPMyAdmin</h3>



<p>If you have installed the application on your computer locally, you can open a web browser and access <code>http://localhost/phpmyadmin</code> to see the login screen.</p>



<p>But, if you have done this installation on a remote server, which can solve some problems, then you may want to make a prior adjustment to the Apache configuration file.</p>



<pre class="wp-block-preformatted">sudo nano /etc/httpd/conf.d/phpMyAdmin.conf</pre>



<p>And change the <code>&lt;Directory /usr/share/phpMyAdmin&gt;</code> section to this one</p>



<pre class="wp-block-preformatted">&lt;Directory /usr/share/phpMyAdmin&gt;
    AddDefaultCharset UTF-<span class="hljs-number">8</span>
    Require all granted
&lt;/Directory&gt;</pre>



<p>Save the changes and now you will be able to access from any computer via <code>http://server/phpmyadmin</code></p>



<figure class="wp-block-image size-large is-resized"><img loading="lazy" src="https://www.osradar.com/wp-content/uploads/2021/02/1-8-1024x525.png" alt="PHPMyAdmin on Fedora 34 / 33" class="wp-image-28813" width="1017" height="521" srcset="https://www.osradar.com/wp-content/uploads/2021/02/1-8-1024x525.png 1024w, https://www.osradar.com/wp-content/uploads/2021/02/1-8-300x154.png 300w, https://www.osradar.com/wp-content/uploads/2021/02/1-8-768x394.png 768w, https://www.osradar.com/wp-content/uploads/2021/02/1-8-696x357.png 696w, https://www.osradar.com/wp-content/uploads/2021/02/1-8-1068x547.png 1068w, https://www.osradar.com/wp-content/uploads/2021/02/1-8.png 1366w" sizes="(max-width: 1017px) 100vw, 1017px" /><figcaption>PHPMyAdmin on Fedora 34 / 33</figcaption></figure>



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



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



<p>PHPMyAdmin is a vital tool for many developers. It allows you to visualize MySQL or MariaDB data quickly through a well-designed graphical interface that does not consume many computer resources. Thanks to this post, you can enjoy the latest stable version of PHPMyAdmin on Fedora 34/ 33</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-phpmyadmin-fedora-33/">Install PHPMyAdmin 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-phpmyadmin-fedora-33/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Install the latest PHPMyAdmin on CentOS 8</title>
		<link>https://www.osradar.com/install-the-latest-phpmyadmin-centos-8/</link>
					<comments>https://www.osradar.com/install-the-latest-phpmyadmin-centos-8/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Wed, 06 Jan 2021 00:28:00 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[mariadb]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[phpMyAdmin]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=27321</guid>

					<description><![CDATA[<p>For developers, the application database is important. And many projects use MySQL or MariaDB to meet this need. In this sense, an application that helps the data query and the administration of the MySQL or MariaDB instance becomes necessary. In this post, I will help you to install maybe one of the most popular ones [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-the-latest-phpmyadmin-centos-8/">Install the latest PHPMyAdmin 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>For developers, the application database is important. And many projects use MySQL or MariaDB to meet this need. In this sense, an application that helps the data query and the administration of the MySQL or MariaDB instance becomes necessary. In this post, I will help you to install maybe one of the most popular ones there is, I mean PHPMyAdmin on CentOS 8</p>



<p><a href="https://www.phpmyadmin.net/" target="_blank" rel="noreferrer noopener">PHPMyAdmin</a> is an open-source application created in PHP that provides the administration of a MySQL or MariaDB database from a comfortable web interface. It is simply installed on the server, we make a few small configurations and that’s it. That’s it. Without consuming many resources you will have a quality application.</p>



<p>So, let’s get started.</p>



<h2>Install the latest PHPMyAdmin on CentOS 8</h2>



<p>Despite being one of the most popular tools available for the administration of MariaDB / MySQL it is not in the CentOS 8 repositories. However, it is possible to get the latest version thanks to the REMI repository.</p>



<p>So, let&#8217;s go for it.</p>



<p><strong>Note: All the commands will be performed as the root user. In case your user has <a href="https://www.osradar.com/how-to-enable-sudo-on-centos-8/" target="_blank" rel="noreferrer noopener">sudo access</a>, you can use it before executing each command.</strong></p>



<p>Open a terminal and add the EPEL repository.</p>



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



<p>After it is added, the REMI repository must be added.</p>



<pre class="wp-block-preformatted">dnf install https://rpms.remirepo.net/enterprise/remi-release-8.rpm</pre>



<p>Now the next step is to disable the PHP 7.2 module which is the default in the CentOS 8 installation</p>



<pre class="wp-block-preformatted">dnf module reset php:7.2</pre>



<p>And now enable the PHP 7.4 module of the REMI module.</p>



<pre class="wp-block-preformatted">dnf module enable php:remi-7.4</pre>



<p>The next steps are to set up <a href="https://www.osradar.com/install-lamp-stack-on-oracle-linux-8-rhel-8-centos-8/" target="_blank" rel="noreferrer noopener">LAMP</a> or <a href="https://www.osradar.com/how-to-install-lemp-on-oracle-linux-8-rhel-8-centos-8/" target="_blank" rel="noreferrer noopener">LEMP</a> on CentOS 8. This is up to you and the server you will be using.</p>



<p>For this example, I will install Apache.</p>



<pre class="wp-block-preformatted">dnf install httpd php-session php-json php-hash php-ctype php-mbstring php-zip php-gd php-curl php-openssl php-xml mariadb-server</pre>



<p>And finally, it installs PHPMyAdmin</p>



<pre class="wp-block-preformatted">dnf --enablerepo=remi install phpMyAdmin</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-1024x536.png" alt="1.- Install the latest of PHPMyAdmin on CentOS 8" class="wp-image-27408" srcset="https://www.osradar.com/wp-content/uploads/2021/01/1-1024x536.png 1024w, https://www.osradar.com/wp-content/uploads/2021/01/1-300x157.png 300w, https://www.osradar.com/wp-content/uploads/2021/01/1-768x402.png 768w, https://www.osradar.com/wp-content/uploads/2021/01/1-696x364.png 696w, https://www.osradar.com/wp-content/uploads/2021/01/1-1068x559.png 1068w, https://www.osradar.com/wp-content/uploads/2021/01/1.png 1365w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>1.- Install the latest of PHPMyAdmin on CentOS 8</figcaption></figure>



<p>For PHPMyAdmin to run with Apache it is necessary to make a small change in the configuration file</p>



<pre class="wp-block-preformatted">nano /etc/httpd/conf.d/phpMyAdmin.conf</pre>



<p>And in the section leave it this way:</p>



<pre class="wp-block-preformatted">&lt;Directory /usr/share/phpMyAdmin>
    AddDefaultCharset UTF-8
    Require all granted
&lt;/Directory>
</pre>



<figure class="wp-block-image size-large"><img loading="lazy" width="703" height="337" src="https://www.osradar.com/wp-content/uploads/2021/01/2.png" alt="2.- Configuring PHPMyAdmin before the first use" class="wp-image-27409" srcset="https://www.osradar.com/wp-content/uploads/2021/01/2.png 703w, https://www.osradar.com/wp-content/uploads/2021/01/2-300x144.png 300w, https://www.osradar.com/wp-content/uploads/2021/01/2-696x334.png 696w" sizes="(max-width: 703px) 100vw, 703px" /><figcaption>2.- Configuring PHPMyAdmin before the first use</figcaption></figure>



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



<p>To apply the changes in Apache, just restart the service</p>



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



<p>Then, open a web browser and go to <code>http://your-server/phpmyadmin</code> and you will see the following screen:</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="525" src="https://www.osradar.com/wp-content/uploads/2021/01/3-1024x525.png" alt="3.- PHPMyAdmin main screen" class="wp-image-27410" srcset="https://www.osradar.com/wp-content/uploads/2021/01/3-1024x525.png 1024w, https://www.osradar.com/wp-content/uploads/2021/01/3-300x154.png 300w, https://www.osradar.com/wp-content/uploads/2021/01/3-768x394.png 768w, https://www.osradar.com/wp-content/uploads/2021/01/3-696x357.png 696w, https://www.osradar.com/wp-content/uploads/2021/01/3-1068x547.png 1068w, https://www.osradar.com/wp-content/uploads/2021/01/3.png 1366w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>3.- PHPMyAdmin main screen</figcaption></figure>



<p>So, enjoy it.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-the-latest-phpmyadmin-centos-8/">Install the latest PHPMyAdmin 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-the-latest-phpmyadmin-centos-8/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to reset your WordPress password on Localhost.</title>
		<link>https://www.osradar.com/how-to-reset-your-wordpress-password-on-localhost/</link>
					<comments>https://www.osradar.com/how-to-reset-your-wordpress-password-on-localhost/#respond</comments>
		
		<dc:creator><![CDATA[roger]]></dc:creator>
		<pubDate>Thu, 30 Jul 2020 07:44:00 +0000</pubDate>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Databases]]></category>
		<category><![CDATA[OpenSource]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[local web server]]></category>
		<category><![CDATA[localhost]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[phpMyAdmin]]></category>
		<category><![CDATA[reset WordPress password]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[xampp]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=22049</guid>

					<description><![CDATA[<p>Hello! The password is essential to be able to enter your website. When this happens, you just need to retrieve it through an email. However, when installing WordPress on a local server, then this option is not available. But don&#8217;t worry, today we will see how to reset your WordPress password on Localhost. What is [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-reset-your-wordpress-password-on-localhost/">How to reset your WordPress password on Localhost.</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! The password is essential to be able to enter your website. When this happens, you just need to retrieve it through an email. However, when installing WordPress on a local server, then this option is not available. But don&#8217;t worry, today we will see how to reset your WordPress password on Localhost.</p>



<h2>What is Localhost?</h2>



<p>This is a service offered by applications such as <a aria-label="undefined (opens in a new tab)" href="https://www.osradar.com/how-to-install-xampp-on-windows-10/" target="_blank" rel="noreferrer noopener">XAMP,</a> <a aria-label="undefined (opens in a new tab)" href="https://www.osradar.com/how-to-install-and-configure-mamp-in-windows-10/" target="_blank" rel="noreferrer noopener">MAMP </a>among others, which allows you to simulate all the conditions of a real server. To do this, use the resources of the computer to install packages of <a aria-label="undefined (opens in a new tab)" href="https://www.osradar.com/how-to-install-php-in-windows-10/" target="_blank" rel="noreferrer noopener">PHP</a> and <a aria-label="undefined (opens in a new tab)" href="https://www.osradar.com/how-to-install-mysql-in-windows-10/" target="_blank" rel="noreferrer noopener">MySQL.</a> Precisely, all these tools in the webserver allow <a aria-label="undefined (opens in a new tab)" href="https://www.osradar.com/how-to-install-wordpress-on-windows-10/" target="_blank" rel="noreferrer noopener">WordPress </a>to work. This local server is ideal for testing plugins and themes, as it offers a development environment almost identical to a real server. Also, it&#8217;s a great idea to test WordPress before publishing it on the website.</p>



<h2>How to reset the password at the Localhost.</h2>



<p>Under real server conditions, WordPress allows you to reset your password using your registered email. Since it is enough to enter the mail so that the system sends a link to be able to recover it. However, in a local server environment, this solution is not possible. Since the mail function is disabled. That is, the system does not send the recovery email. Of course, it is possible to enable this function by editing some lines of code. However, today I propose an alternative solution.</p>



<h2>How to recover your password on Localhost using phpMyAdmin.</h2>



<p>When you install a local web server, another server called <a aria-label="undefined (opens in a new tab)" href="https://www.osradar.com/how-to-install-phpmyadmin-on-windows-10/" target="_blank" rel="noreferrer noopener">PhpMyAdmin </a>is also installed. In effect, this is used to manage, modify, create, or delete databases. In fact, from this section, the MySQL system is used to create the database for WordPress. Well, the first thing you have to do is check which is the database created for WordPress. With this intention, check the file <em>wp-config.php.</em> There is the name of the database used.</p>



<figure class="wp-block-gallery columns-2 is-cropped"><ul class="blocks-gallery-grid"><li class="blocks-gallery-item"><figure><img loading="lazy" width="1024" height="787" src="//1081754738.rsc.cdn77.org/wp-content/uploads/2020/07/wp-1024x787.png" alt="" data-id="22057" data-full-url="//1081754738.rsc.cdn77.org/wp-content/uploads/2020/07/wp.png" data-link="https://www.osradar.com/?attachment_id=22057" class="wp-image-22057" srcset="https://www.osradar.com/wp-content/uploads/2020/07/wp-1024x787.png 1024w, https://www.osradar.com/wp-content/uploads/2020/07/wp-300x231.png 300w, https://www.osradar.com/wp-content/uploads/2020/07/wp-768x590.png 768w, https://www.osradar.com/wp-content/uploads/2020/07/wp-696x535.png 696w, https://www.osradar.com/wp-content/uploads/2020/07/wp-1068x821.png 1068w, https://www.osradar.com/wp-content/uploads/2020/07/wp-80x60.png 80w, https://www.osradar.com/wp-content/uploads/2020/07/wp.png 1280w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure></li><li class="blocks-gallery-item"><figure><img loading="lazy" width="1024" height="787" src="//1081754738.rsc.cdn77.org/wp-content/uploads/2020/07/wp2-1024x787.png" alt="" data-id="22058" data-full-url="//1081754738.rsc.cdn77.org/wp-content/uploads/2020/07/wp2.png" data-link="https://www.osradar.com/?attachment_id=22058" class="wp-image-22058" srcset="https://www.osradar.com/wp-content/uploads/2020/07/wp2-1024x787.png 1024w, https://www.osradar.com/wp-content/uploads/2020/07/wp2-300x231.png 300w, https://www.osradar.com/wp-content/uploads/2020/07/wp2-768x590.png 768w, https://www.osradar.com/wp-content/uploads/2020/07/wp2-696x535.png 696w, https://www.osradar.com/wp-content/uploads/2020/07/wp2-1068x821.png 1068w, https://www.osradar.com/wp-content/uploads/2020/07/wp2-80x60.png 80w, https://www.osradar.com/wp-content/uploads/2020/07/wp2.png 1280w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure></li></ul></figure>



<p>Then, you just need to log in to the phpMyAdmin server. Once there, please click on the WordPress database.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="787" src="//1081754738.rsc.cdn77.org/wp-content/uploads/2020/07/wp3-1024x787.png" alt="Select the WordPress database." class="wp-image-22059" srcset="https://www.osradar.com/wp-content/uploads/2020/07/wp3-1024x787.png 1024w, https://www.osradar.com/wp-content/uploads/2020/07/wp3-300x231.png 300w, https://www.osradar.com/wp-content/uploads/2020/07/wp3-768x590.png 768w, https://www.osradar.com/wp-content/uploads/2020/07/wp3-696x535.png 696w, https://www.osradar.com/wp-content/uploads/2020/07/wp3-1068x821.png 1068w, https://www.osradar.com/wp-content/uploads/2020/07/wp3-80x60.png 80w, https://www.osradar.com/wp-content/uploads/2020/07/wp3.png 1280w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>Select the WordPress database.</figcaption></figure>



<p>Immediately all the tables in the database will be displayed. Please select <em>wp-users.</em> This is where the information for each user is stored.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="787" src="//1081754738.rsc.cdn77.org/wp-content/uploads/2020/07/wp4-1024x787.png" alt="Select the wp-users table" class="wp-image-22061" srcset="https://www.osradar.com/wp-content/uploads/2020/07/wp4-1024x787.png 1024w, https://www.osradar.com/wp-content/uploads/2020/07/wp4-300x231.png 300w, https://www.osradar.com/wp-content/uploads/2020/07/wp4-768x590.png 768w, https://www.osradar.com/wp-content/uploads/2020/07/wp4-696x535.png 696w, https://www.osradar.com/wp-content/uploads/2020/07/wp4-1068x821.png 1068w, https://www.osradar.com/wp-content/uploads/2020/07/wp4-80x60.png 80w, https://www.osradar.com/wp-content/uploads/2020/07/wp4.png 1280w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>Select the wp-users table</figcaption></figure>



<p>Then click on <strong>Edit.</strong></p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="787" src="//1081754738.rsc.cdn77.org/wp-content/uploads/2020/07/wp5-1024x787.png" alt="" class="wp-image-22064" srcset="https://www.osradar.com/wp-content/uploads/2020/07/wp5-1024x787.png 1024w, https://www.osradar.com/wp-content/uploads/2020/07/wp5-300x231.png 300w, https://www.osradar.com/wp-content/uploads/2020/07/wp5-768x590.png 768w, https://www.osradar.com/wp-content/uploads/2020/07/wp5-696x535.png 696w, https://www.osradar.com/wp-content/uploads/2020/07/wp5-1068x821.png 1068w, https://www.osradar.com/wp-content/uploads/2020/07/wp5-80x60.png 80w, https://www.osradar.com/wp-content/uploads/2020/07/wp5.png 1280w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<p>From now on the method involves a few simple steps. First, select the value corresponding to the administrator user. That is, the parameter you usually use to log in to the server. Then select the MD5 function as this is used by WordPress to generate the password. Then in the password field, select the new value in plain text. Finally, press the <strong>Go</strong> button to set the changes.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="339" src="//1081754738.rsc.cdn77.org/wp-content/uploads/2020/07/wp6-1024x339.png" alt="" class="wp-image-22065" srcset="https://www.osradar.com/wp-content/uploads/2020/07/wp6-1024x339.png 1024w, https://www.osradar.com/wp-content/uploads/2020/07/wp6-300x99.png 300w, https://www.osradar.com/wp-content/uploads/2020/07/wp6-768x254.png 768w, https://www.osradar.com/wp-content/uploads/2020/07/wp6-696x231.png 696w, https://www.osradar.com/wp-content/uploads/2020/07/wp6-1068x354.png 1068w, https://www.osradar.com/wp-content/uploads/2020/07/wp6.png 1280w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>Setting the new password in Localhost for WordPress</figcaption></figure>



<p>After this step, you will be able to login to WordPress with your new password. That&#8217;s it! Simple but very useful, right? I hope you can manage your local server more efficiently. Well, we finally saw how to reset your WordPress password on Localhost. Bye!</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-reset-your-wordpress-password-on-localhost/">How to reset your WordPress password on Localhost.</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-reset-your-wordpress-password-on-localhost/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to install phpMyAdmin on Windows 10</title>
		<link>https://www.osradar.com/how-to-install-phpmyadmin-on-windows-10/</link>
					<comments>https://www.osradar.com/how-to-install-phpmyadmin-on-windows-10/#comments</comments>
		
		<dc:creator><![CDATA[roger]]></dc:creator>
		<pubDate>Tue, 31 Dec 2019 01:14:11 +0000</pubDate>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[apache web server]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[php 7.4]]></category>
		<category><![CDATA[phpMyAdmin]]></category>
		<category><![CDATA[phpMyAdmin in Windows]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=17360</guid>

					<description><![CDATA[<p>Hey, what&#8217;s up? Today we&#8217;re going to talk about install phpMyAdmin on WIndows 10. This is open-source software, designed to handle the administration and management of MySQL databases through a graphical user interface. Through this application, we can create, modify and delete records. It is also possible to import and export tables from the MySQL [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-install-phpmyadmin-on-windows-10/">How to install phpMyAdmin on Windows 10</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>Hey, what&#8217;s up? Today we&#8217;re going to talk about install phpMyAdmin on WIndows 10. This is open-source software, designed to handle the administration and management of MySQL databases through a graphical user interface.  Through this application, we can create, modify and delete records. It is also possible to import and export tables from the MySQL database. In addition, we can execute MySQL queries, optimize and repair the database and many more tasks. Well, in this post we are going to see how to install phpMyAdmin in Windows 10.</p>



<h2>Prerequisites</h2>



<p> To make use of this tool, the webserver must obviously be configured and running correctly. In like manner, here in osradar.com, I show you how to install and configure the following elements:</p>



<ul><li>Any web server running and configured. In this case, we will use <a rel="noreferrer noopener" aria-label="Apache. (opens in a new tab)" href="https://www.osradar.com/how-to-install-apache-on-windows-10/" target="_blank">Apache.</a></li><li>A database manager. For this purpose, we will use <a rel="noreferrer noopener" aria-label="MySql. (opens in a new tab)" href="https://www.osradar.com/how-to-install-mysql-in-windows-10/" target="_blank">MySql.</a></li><li><a rel="noreferrer noopener" aria-label="PHP. (opens in a new tab)" href="https://www.osradar.com/how-to-install-php-in-windows-10/" target="_blank">PHP.</a></li></ul>



<h2>Download the latest version of phpMyAdmin.</h2>



<p> In the first place, go to the official phpMyAdmin website and <a rel="noreferrer noopener" aria-label="download (opens in a new tab)" href="https://www.phpmyadmin.net/downloads/" target="_blank">download</a> the latest version of the tool from there At the time of writing this post, the version is 5.0.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="730" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2019/12/php-1.jpg" alt="Download the latest version of phpMyAdmin" class="wp-image-17374" srcset="https://www.osradar.com/wp-content/uploads/2019/12/php-1.jpg 1024w, https://www.osradar.com/wp-content/uploads/2019/12/php-1-300x214.jpg 300w, https://www.osradar.com/wp-content/uploads/2019/12/php-1-768x548.jpg 768w, https://www.osradar.com/wp-content/uploads/2019/12/php-1-100x70.jpg 100w, https://www.osradar.com/wp-content/uploads/2019/12/php-1-696x496.jpg 696w, https://www.osradar.com/wp-content/uploads/2019/12/php-1-589x420.jpg 589w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>Download the latest version of phpMyAdmin</figcaption></figure>



<p>Then unzip the file and rename it to phpMyAdmin. Then drag this folder to the next path: <strong>C:\Apache24\htdocs</strong></p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="730" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2019/12/php2-1.jpg" alt="Unzip the file, modify its name and drag it to the address above." class="wp-image-17376" srcset="https://www.osradar.com/wp-content/uploads/2019/12/php2-1.jpg 1024w, https://www.osradar.com/wp-content/uploads/2019/12/php2-1-300x214.jpg 300w, https://www.osradar.com/wp-content/uploads/2019/12/php2-1-768x548.jpg 768w, https://www.osradar.com/wp-content/uploads/2019/12/php2-1-100x70.jpg 100w, https://www.osradar.com/wp-content/uploads/2019/12/php2-1-696x496.jpg 696w, https://www.osradar.com/wp-content/uploads/2019/12/php2-1-589x420.jpg 589w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>Unzip the file, modify its name and drag it to the address above.</figcaption></figure>



<h2>Set up some phpMyAdmin files.</h2>



<p>To ensure the correct functioning of the tool, it is necessary to make some previous configurations. First, inside the program folder, locate the file <strong>config.sample.inc.php</strong>. Then, rename it to <strong>config.inc.php</strong>.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="730" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2019/12/php3-1.jpg" alt="Rename the selected file." class="wp-image-17379" srcset="https://www.osradar.com/wp-content/uploads/2019/12/php3-1.jpg 1024w, https://www.osradar.com/wp-content/uploads/2019/12/php3-1-300x214.jpg 300w, https://www.osradar.com/wp-content/uploads/2019/12/php3-1-768x548.jpg 768w, https://www.osradar.com/wp-content/uploads/2019/12/php3-1-100x70.jpg 100w, https://www.osradar.com/wp-content/uploads/2019/12/php3-1-696x496.jpg 696w, https://www.osradar.com/wp-content/uploads/2019/12/php3-1-589x420.jpg 589w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>Rename the selected file.</figcaption></figure>



<p> Finally, you have to modify it with your favorite text editor. Please select the next line:</p>



<pre class="wp-block-code"><code>$cfg&#91;'blowfish_secret'] = ''; /* YOU MUST FILL IN THIS FOR COOKIE AUTH! */</code></pre>



<p> Enter a value of your choice, minimum of 32 characters long:</p>



<pre class="wp-block-code"><code>$cfg&#91;'blowfish_secret'] = ''; /* k7b862qwq4ygj8a2hkczmd6spqsnspnkd */</code></pre>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="730" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2019/12/php4-2.jpg" alt="" class="wp-image-17380" srcset="https://www.osradar.com/wp-content/uploads/2019/12/php4-2.jpg 1024w, https://www.osradar.com/wp-content/uploads/2019/12/php4-2-300x214.jpg 300w, https://www.osradar.com/wp-content/uploads/2019/12/php4-2-768x548.jpg 768w, https://www.osradar.com/wp-content/uploads/2019/12/php4-2-100x70.jpg 100w, https://www.osradar.com/wp-content/uploads/2019/12/php4-2-696x496.jpg 696w, https://www.osradar.com/wp-content/uploads/2019/12/php4-2-589x420.jpg 589w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<p>Finally, save the configuration file.</p>



<h2>Enable the necessary extensions.</h2>



<p>On the other hand, it is necessary to enable the extensions required for the operation of the tool. With this intention, remove the <strong>;</strong> at the beginning of the extension, as shown <a rel="noreferrer noopener" aria-label="here. (opens in a new tab)" href="https://www.osradar.com/how-to-install-cakephp-in-windows-10/" target="_blank">here.</a> With this intention, open the file php.ini located in the php folder.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="730" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2019/12/php5-2.jpg" alt="Edit the php.ini file" class="wp-image-17381" srcset="https://www.osradar.com/wp-content/uploads/2019/12/php5-2.jpg 1024w, https://www.osradar.com/wp-content/uploads/2019/12/php5-2-300x214.jpg 300w, https://www.osradar.com/wp-content/uploads/2019/12/php5-2-768x548.jpg 768w, https://www.osradar.com/wp-content/uploads/2019/12/php5-2-100x70.jpg 100w, https://www.osradar.com/wp-content/uploads/2019/12/php5-2-696x496.jpg 696w, https://www.osradar.com/wp-content/uploads/2019/12/php5-2-589x420.jpg 589w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>Edit the php.ini file</figcaption></figure>



<p>The extensions to be enabled are the following:</p>



<pre class="wp-block-code"><code>extension=php_mbstring.dll
extension=mysqli</code></pre>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="730" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2019/12/php6-1.jpg" alt="Enable the extensions." class="wp-image-17383" srcset="https://www.osradar.com/wp-content/uploads/2019/12/php6-1.jpg 1024w, https://www.osradar.com/wp-content/uploads/2019/12/php6-1-300x214.jpg 300w, https://www.osradar.com/wp-content/uploads/2019/12/php6-1-768x548.jpg 768w, https://www.osradar.com/wp-content/uploads/2019/12/php6-1-100x70.jpg 100w, https://www.osradar.com/wp-content/uploads/2019/12/php6-1-696x496.jpg 696w, https://www.osradar.com/wp-content/uploads/2019/12/php6-1-589x420.jpg 589w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>Enable the extensions.</figcaption></figure>



<p>Finally, save the configuration and restart the Apache server. With this in mind, press the Win+R combination and run the <strong>services.msc </strong>command. Once the list of services is open, locate the <em>Apache HTTP Server</em>, and restart it.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="730" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2019/12/php7-1.jpg" alt="Reboot the Apache server." class="wp-image-17385" srcset="https://www.osradar.com/wp-content/uploads/2019/12/php7-1.jpg 1024w, https://www.osradar.com/wp-content/uploads/2019/12/php7-1-300x214.jpg 300w, https://www.osradar.com/wp-content/uploads/2019/12/php7-1-768x548.jpg 768w, https://www.osradar.com/wp-content/uploads/2019/12/php7-1-100x70.jpg 100w, https://www.osradar.com/wp-content/uploads/2019/12/php7-1-696x496.jpg 696w, https://www.osradar.com/wp-content/uploads/2019/12/php7-1-589x420.jpg 589w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>Reboot the Apache server.</figcaption></figure>



<h2>Login to phpMyAdmin</h2>



<p>Once you have made your settings, it is time to login to phpMyAdmin. To do so, please open the following address in your web browser:  <strong>http://localhost/phpmyadmin/ </strong> Once there, please enter your MySQL username and password:</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="730" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2019/12/php8-1.jpg" alt="Enter the MySQL user and password." class="wp-image-17386" srcset="https://www.osradar.com/wp-content/uploads/2019/12/php8-1.jpg 1024w, https://www.osradar.com/wp-content/uploads/2019/12/php8-1-300x214.jpg 300w, https://www.osradar.com/wp-content/uploads/2019/12/php8-1-768x548.jpg 768w, https://www.osradar.com/wp-content/uploads/2019/12/php8-1-100x70.jpg 100w, https://www.osradar.com/wp-content/uploads/2019/12/php8-1-696x496.jpg 696w, https://www.osradar.com/wp-content/uploads/2019/12/php8-1-589x420.jpg 589w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>Enter the MySQL user and password.</figcaption></figure>



<p>After entering the credentials, the tool&#8217;s Dashboard will be displayed. Additionally, when you scroll down the page, a warning sign appears.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="730" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2019/12/php9-1.jpg" alt="The initial screen of phpMyAdmin showing the warning notice." class="wp-image-17389" srcset="https://www.osradar.com/wp-content/uploads/2019/12/php9-1.jpg 1024w, https://www.osradar.com/wp-content/uploads/2019/12/php9-1-300x214.jpg 300w, https://www.osradar.com/wp-content/uploads/2019/12/php9-1-768x548.jpg 768w, https://www.osradar.com/wp-content/uploads/2019/12/php9-1-100x70.jpg 100w, https://www.osradar.com/wp-content/uploads/2019/12/php9-1-696x496.jpg 696w, https://www.osradar.com/wp-content/uploads/2019/12/php9-1-589x420.jpg 589w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>The initial screen of phpMyAdmin showing the warning notice.</figcaption></figure>



<p>This warning is shown because the tool needs a database to work. In case you have not created it before, it is possible to import it from the same installation folder. With this in mind, please click on the Import menu. Then navigate to the following path:<strong> C:\Apache24\htdocs\phpMyAdmin\sql.</strong> And from there, select <em>create_tables.sql</em></p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="730" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2019/12/php10-1.jpg" alt="Import the create_tables.sql database" class="wp-image-17390" srcset="https://www.osradar.com/wp-content/uploads/2019/12/php10-1.jpg 1024w, https://www.osradar.com/wp-content/uploads/2019/12/php10-1-300x214.jpg 300w, https://www.osradar.com/wp-content/uploads/2019/12/php10-1-768x548.jpg 768w, https://www.osradar.com/wp-content/uploads/2019/12/php10-1-100x70.jpg 100w, https://www.osradar.com/wp-content/uploads/2019/12/php10-1-696x496.jpg 696w, https://www.osradar.com/wp-content/uploads/2019/12/php10-1-589x420.jpg 589w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>Import the create_tables.sql database</figcaption></figure>



<p>Consequently, a database will be created under the name <em>phpmyadmin</em></p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="730" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2019/12/php11-1.jpg" alt="Recently imported phpmyadmin database" class="wp-image-17392" srcset="https://www.osradar.com/wp-content/uploads/2019/12/php11-1.jpg 1024w, https://www.osradar.com/wp-content/uploads/2019/12/php11-1-300x214.jpg 300w, https://www.osradar.com/wp-content/uploads/2019/12/php11-1-768x548.jpg 768w, https://www.osradar.com/wp-content/uploads/2019/12/php11-1-100x70.jpg 100w, https://www.osradar.com/wp-content/uploads/2019/12/php11-1-696x496.jpg 696w, https://www.osradar.com/wp-content/uploads/2019/12/php11-1-589x420.jpg 589w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>Recently imported phpmyadmin database</figcaption></figure>



<p>Once the database is created, you have to exit the tool by clicking on the door with the small green arrow.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="730" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2019/12/php12-1.jpg" alt="Exit from phpMyAdmin" class="wp-image-17393" srcset="https://www.osradar.com/wp-content/uploads/2019/12/php12-1.jpg 1024w, https://www.osradar.com/wp-content/uploads/2019/12/php12-1-300x214.jpg 300w, https://www.osradar.com/wp-content/uploads/2019/12/php12-1-768x548.jpg 768w, https://www.osradar.com/wp-content/uploads/2019/12/php12-1-100x70.jpg 100w, https://www.osradar.com/wp-content/uploads/2019/12/php12-1-696x496.jpg 696w, https://www.osradar.com/wp-content/uploads/2019/12/php12-1-589x420.jpg 589w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>Exit from phpMyAdmin</figcaption></figure>



<p>Then, modify the values referred to the user who will manipulate the database. In addition, it enables the database and table storage parameters. To do this, it eliminates the double slashes in front of them. Likewise, in the line corresponding to user control, it adds <em>localhost</em>. Also, it modifies the value <em>controluser </em>and <em>controlpass </em>with the user and the password of MySQL. To graph the process I show you the code before editing it and where you should make the changes.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="730" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2019/12/php17-1.jpg" alt="Edit the indicated values." class="wp-image-17395" srcset="https://www.osradar.com/wp-content/uploads/2019/12/php17-1.jpg 1024w, https://www.osradar.com/wp-content/uploads/2019/12/php17-1-300x214.jpg 300w, https://www.osradar.com/wp-content/uploads/2019/12/php17-1-768x548.jpg 768w, https://www.osradar.com/wp-content/uploads/2019/12/php17-1-100x70.jpg 100w, https://www.osradar.com/wp-content/uploads/2019/12/php17-1-696x496.jpg 696w, https://www.osradar.com/wp-content/uploads/2019/12/php17-1-589x420.jpg 589w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>Edit the indicated values.</figcaption></figure>



<p>Below is the appearance of the correctly modified phpMyAdmin configuration file.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="730" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2019/12/php16-2.jpg" alt="The configuration file of phpMyAdmin correctly modified" class="wp-image-17398" srcset="https://www.osradar.com/wp-content/uploads/2019/12/php16-2.jpg 1024w, https://www.osradar.com/wp-content/uploads/2019/12/php16-2-300x214.jpg 300w, https://www.osradar.com/wp-content/uploads/2019/12/php16-2-768x548.jpg 768w, https://www.osradar.com/wp-content/uploads/2019/12/php16-2-100x70.jpg 100w, https://www.osradar.com/wp-content/uploads/2019/12/php16-2-696x496.jpg 696w, https://www.osradar.com/wp-content/uploads/2019/12/php16-2-589x420.jpg 589w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>The configuration file of phpMyAdmin correctly modified</figcaption></figure>



<p>Save the configuration and go back to phpMyAdmin. The warning message should have disappeared.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="730" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2019/12/php18-1.jpg" alt="phpMyAdmin running without a warning message" class="wp-image-17400" srcset="https://www.osradar.com/wp-content/uploads/2019/12/php18-1.jpg 1024w, https://www.osradar.com/wp-content/uploads/2019/12/php18-1-300x214.jpg 300w, https://www.osradar.com/wp-content/uploads/2019/12/php18-1-768x548.jpg 768w, https://www.osradar.com/wp-content/uploads/2019/12/php18-1-100x70.jpg 100w, https://www.osradar.com/wp-content/uploads/2019/12/php18-1-696x496.jpg 696w, https://www.osradar.com/wp-content/uploads/2019/12/php18-1-589x420.jpg 589w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>phpMyAdmin running without a warning message</figcaption></figure>



<p> Ultimately, we have seen how to install phpMyAdmin on Windows 10. This tool facilitates the management and administration of MySQL. I hope you enjoyed this post. See you soon!</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-install-phpmyadmin-on-windows-10/">How to install phpMyAdmin on Windows 10</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-phpmyadmin-on-windows-10/feed/</wfw:commentRss>
			<slash:comments>7</slash:comments>
		
		
			</item>
		<item>
		<title>Deploy PHPMyAdmin using Docker Compose</title>
		<link>https://www.osradar.com/deploy-phpmyadmin-using-docker-compose/</link>
					<comments>https://www.osradar.com/deploy-phpmyadmin-using-docker-compose/#comments</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Thu, 31 Oct 2019 23:49:10 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Docker]]></category>
		<category><![CDATA[Docker compose]]></category>
		<category><![CDATA[phpMyAdmin]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[web]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=15131</guid>

					<description><![CDATA[<p>Hello. In this post, I will teach you how to deploy PHPMyAdmin using Docker compose. It will be brief but explained step by step. I have to admit that these last days I have liked much more the technology of Docker compose. It seems a very simple and fast way to install certain applications. However, [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/deploy-phpmyadmin-using-docker-compose/">Deploy PHPMyAdmin using Docker Compose</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>Hello. In this post, I will teach you how to deploy PHPMyAdmin using Docker compose. It will be brief but explained step by step.</strong></p>



<p>I have to admit that these last days I have liked much more the technology of Docker compose. It seems a very simple and fast way to install certain applications. However, from my point of view, a bit of flexibility is lost in the configurations since they are images already created from a base. Of course, we will be able to configure some things but not everything.</p>



<p>Well, <a href="https://www.phpmyadmin.net/" target="_blank" rel="noreferrer noopener" aria-label="PHPMyAdmin (opens in a new tab)">PHPMyAdmin</a> is an application that is quite easy to install in Linux because it is available in most of the official refuels of the distributions. However, installing the latest version available from its source code may frighten some users. So this is a good way to install it.</p>



<p>Briefly<g class="gr_ gr_32 gr-alert gr_gramm gr_inline_cards gr_run_anim Punctuation only-ins replaceWithoutSep" id="32" data-gr-id="32">,</g> I will tell you that Docker compose is more thought of production environments where compatibility should be as high as possible. This is precisely the great advantage of Docker images that we will be able to use in any supported system thanks to the technology of containers. Then,<strong> these steps can be done from any Linux distribution that has installed </strong><a rel="noreferrer noopener" aria-label="ocker  (opens in a new tab)" href="https://www.osradar.com/tag/docker/" target="_blank"><strong>Docker </strong></a><strong>and Docker Compose.</strong></p>



<p>So, let us start.</p>



<h2>Install Docker and Docker Compose on Linux</h2>



<p>The first step is to have Docker installed in the system, obviously. </p>



<ul><li>If you are using Ubuntu: <a rel="noreferrer noopener" href="https://www.osradar.com/how-to-install-docker-on-ubuntu-18-04/" target="_blank">How to install Docker on Ubuntu 18.04?</a></li><li>For CentOS 8: <a rel="noreferrer noopener" href="https://www.osradar.com/install-docker-centos-8/" target="_blank">How to install Docker on CentOS 8?</a></li><li>For CentOS 7: <a rel="noreferrer noopener" href="https://www.osradar.com/how-to-install-docker-ce-on-centos-7/" target="_blank">How to install Docker CE on CentOS 7?</a></li><li>If you use Windows: <a rel="noreferrer noopener" href="https://www.osradar.com/how-to-install-docker-in-windows-10/" target="_blank">How to install Docker in Windows 10?</a></li><li>Or, if you are using Debian 10: <a rel="noreferrer noopener" href="https://www.osradar.com/install-docker-on-debian-10/" target="_blank">How to install Docker on Debian 10?</a></li></ul>



<p>And using your distribution’s package manager, you can install Docker Compose. For example:</p>



<pre class="wp-block-preformatted">:~$ sudo apt docker-compose</pre>



<p>For Debian, Ubuntu and derivatives.</p>



<pre class="wp-block-preformatted">:~$ sudo yum install docker-compose</pre>



<p>Or, for RHEL, CentOS and derivatives.</p>



<h2>Install PHPMyAdmin using Docker Compose</h2>



<p>The official PHPMyAdmin image requires the <a rel="noreferrer noopener" aria-label="MySQL (opens in a new tab)" href="https://www.osradar.com/tag/mysql/" target="_blank">MySQL</a> or <a rel="noreferrer noopener" aria-label="MariaDB (opens in a new tab)" href="https://www.osradar.com/tag/mariadb/" target="_blank">MariaDB</a> image to be installed. Anyway, in the docker-compose file, I will also add it in case you do not have it installed.</p>



<p>First, I will create a new folder and within it I will create the <code>docker-compose.yml</code> file.</p>



<pre class="wp-block-preformatted">:~$ mkdir phpmyadmin
:~$ cd phpmyadmin</pre>



<figure class="wp-block-image"><img loading="lazy" width="682" height="105" src="https://www.osradar.com/wp-content/uploads/2019/10/1-23.png" alt="1.- Creating a folder" class="wp-image-15133" srcset="https://www.osradar.com/wp-content/uploads/2019/10/1-23.png 682w, https://www.osradar.com/wp-content/uploads/2019/10/1-23-300x46.png 300w" sizes="(max-width: 682px) 100vw, 682px" /><figcaption>1.- Creating a folder</figcaption></figure>



<p>Then, create the file and add the following:</p>



<pre class="wp-block-preformatted">:~$ nano docker-compose.yml</pre>



<pre class="wp-block-preformatted">version: '2'

  volumes:
    db:

  services:
    db:
      image: mariadb
      command: --transaction-isolation=READ-COMMITTED --binlog-format=ROW
      restart: always
      volumes:
        - db:/var/lib/mysql
      environment:
        - MYSQL_ROOT_PASSWORD=1234osradar
        - MYSQL_PASSWORD=1234osradar
        - MYSQL_DATABASE=example    
        - MYSQL_USER=osradar
  app:
     image: phpmyadmin/phpmyadmin
     container_name: phpmyadmin
     environment:
      - PMA_ARBITRARY=1
     restart: always
     links:
      - db
     ports:
      - 8080:80
     volumes:
      - /sessions</pre>



<figure class="wp-block-image"><img loading="lazy" width="928" height="576" src="https://www.osradar.com/wp-content/uploads/2019/10/2-21.png" alt="2.- The Docker-compose file for PHPMyAdmin" class="wp-image-15134" srcset="https://www.osradar.com/wp-content/uploads/2019/10/2-21.png 928w, https://www.osradar.com/wp-content/uploads/2019/10/2-21-300x186.png 300w, https://www.osradar.com/wp-content/uploads/2019/10/2-21-768x477.png 768w, https://www.osradar.com/wp-content/uploads/2019/10/2-21-356x220.png 356w, https://www.osradar.com/wp-content/uploads/2019/10/2-21-696x432.png 696w, https://www.osradar.com/wp-content/uploads/2019/10/2-21-677x420.png 677w" sizes="(max-width: 928px) 100vw, 928px" /><figcaption>2.- The Docker-compose file for PHPMyAdmin</figcaption></figure>



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



<p>The file itself is explicit but we are going to explain the most important parts. In the image we can see that we will try to raise two services: one is mariadb and the other PHPMyAdmin.</p>



<p>First we configure MariaDB that will work as the database manager. And we configured the environment variables that will allow us to define the password of the root user, the normal user and the user name.</p>



<p>In the case of PHPMyAdmin is even simpler because by default only requires that we specify within the environment if it is an arbitrary host. Then, we define the port where we will have access, in this case, I left the 8080. All better explained in the <a rel="noreferrer noopener" aria-label="official documentation of the PHPMyAdmin image (opens in a new tab)" href="https://github.com/phpmyadmin/docker" target="_blank">official documentation of the PHPMyAdmin image</a>.</p>



<p>Finally, run docker compose to install PHPMyAdmin.</p>



<pre class="wp-block-preformatted">:~$ sudo docker-compose up -d</pre>



<figure class="wp-block-image"><img loading="lazy" width="858" height="505" src="https://www.osradar.com/wp-content/uploads/2019/10/3-20.png" alt="3.- Installing PHPMyAdmin using Docker compose" class="wp-image-15135" srcset="https://www.osradar.com/wp-content/uploads/2019/10/3-20.png 858w, https://www.osradar.com/wp-content/uploads/2019/10/3-20-300x177.png 300w, https://www.osradar.com/wp-content/uploads/2019/10/3-20-768x452.png 768w, https://www.osradar.com/wp-content/uploads/2019/10/3-20-696x410.png 696w, https://www.osradar.com/wp-content/uploads/2019/10/3-20-714x420.png 714w" sizes="(max-width: 858px) 100vw, 858px" /><figcaption>3.- Installing PHPMyAdmin using Docker compose</figcaption></figure>



<p>Then, we will be able to access from our browser using the IP address of the server or the domain name with port 8080 that we specify. Then, log in with your credentials:</p>



<figure class="wp-block-image"><img loading="lazy" width="1024" height="502" src="https://www.osradar.com/wp-content/uploads/2019/10/4-17-1024x502.png" alt="4.- PHPMyAdmin using Docker Compose" class="wp-image-15137" srcset="https://www.osradar.com/wp-content/uploads/2019/10/4-17-1024x502.png 1024w, https://www.osradar.com/wp-content/uploads/2019/10/4-17-300x147.png 300w, https://www.osradar.com/wp-content/uploads/2019/10/4-17-768x376.png 768w, https://www.osradar.com/wp-content/uploads/2019/10/4-17-324x160.png 324w, https://www.osradar.com/wp-content/uploads/2019/10/4-17-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2019/10/4-17-696x341.png 696w, https://www.osradar.com/wp-content/uploads/2019/10/4-17-1068x523.png 1068w, https://www.osradar.com/wp-content/uploads/2019/10/4-17-858x420.png 858w, https://www.osradar.com/wp-content/uploads/2019/10/4-17.png 1366w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>4.- PHPMyAdmin using Docker Compose</figcaption></figure>



<p>Finally you will see the main screen.</p>



<figure class="wp-block-image"><img loading="lazy" width="1024" height="506" src="https://www.osradar.com/wp-content/uploads/2019/10/5-13-1024x506.png" alt="5.- PHPMyAdmin Running" class="wp-image-15139" srcset="https://www.osradar.com/wp-content/uploads/2019/10/5-13-1024x506.png 1024w, https://www.osradar.com/wp-content/uploads/2019/10/5-13-300x148.png 300w, https://www.osradar.com/wp-content/uploads/2019/10/5-13-768x379.png 768w, https://www.osradar.com/wp-content/uploads/2019/10/5-13-324x160.png 324w, https://www.osradar.com/wp-content/uploads/2019/10/5-13-696x344.png 696w, https://www.osradar.com/wp-content/uploads/2019/10/5-13-1068x528.png 1068w, https://www.osradar.com/wp-content/uploads/2019/10/5-13-850x420.png 850w, https://www.osradar.com/wp-content/uploads/2019/10/5-13.png 1354w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>5.- PHPMyAdmin Running</figcaption></figure>



<p>So, that is it.</p>



<h2>Conclusion</h2>



<p>In a production server, we look very much for the productivity and compatibility of the applications. In this sense, using Docker images guarantees compatibility and ease of use. Today, you have learned how to install PHPMyAdmin using this technology and we will be able to realize how simple it is.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/deploy-phpmyadmin-using-docker-compose/">Deploy PHPMyAdmin using Docker Compose</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/deploy-phpmyadmin-using-docker-compose/feed/</wfw:commentRss>
			<slash:comments>3</slash:comments>
		
		
			</item>
		<item>
		<title>Install PHPMyAdmin on Debian 10</title>
		<link>https://www.osradar.com/install-phpmyadmin-debian-10/</link>
					<comments>https://www.osradar.com/install-phpmyadmin-debian-10/#comments</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Wed, 21 Aug 2019 23:09:43 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Buster]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[Databases]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[mariadb]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[phpMyAdmin]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[Tutorial]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=13048</guid>

					<description><![CDATA[<p>MySQL and MariaDB are some of the most popular database managers out there. Thanks to their deep stability and the fact that they are free and open source. But I think the fact that they are so popular is that they are heavily documented by the community. So if you have a problem, you can [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-phpmyadmin-debian-10/">Install PHPMyAdmin on Debian 10</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>MySQL and MariaDB are some of the most popular database managers out there. Thanks to their deep stability and the fact that they are free and open source. But I think the fact that they are so popular is that they are heavily documented by the community. So if you have a problem, you can probably solve it on the internet. However, managing a MySQL or MariaDB server without the help of a third-party graphics application can be uncomfortable. Even more so if you are a newbie. Then, tools like PHPMyAdmin become necessary. In this post, you will learn how to install the latest version of PHPMyAdmin on Debian 10.</p>
<h2>Some features of PHPMyAdmin</h2>
<p><a href="https://www.phpmyadmin.net/" rel="noopener">PHPMyAdmin</a> is a web application that is installed on a server to manage a MySQL or MariaDB instance. These are some of the main features:</p>
<ul>
<li>Intuitive web interface.</li>
<li>Support for most MySQL features:
<ul>
<li>browse and drop databases, tables, views, fields and indexes.</li>
<li>create, copy, drop, rename and alter databases, tables, fields and indexes.</li>
<li>maintenance server, databases and tables, with proposals on server configuration.</li>
<li>execute, edit and bookmark any <abbr title="structured query language">SQL</abbr>-statement, even batch-queries.</li>
<li>manage MySQL user accounts and privileges.</li>
<li>manage stored procedures and triggers.</li>
</ul>
</li>
<li>Import data from <abbr title="comma separated values">CSV</abbr> and <abbr title="structured query language">SQL.</abbr></li>
<li>Export data to various formats: <abbr title="comma separated values">CSV</abbr>, <abbr title="structured query language">SQL</abbr>, <abbr title="Extensible Markup Language">XML</abbr>, <abbr title="Portable Document Format">PDF</abbr>, <abbr title="International Organization for Standards">ISO</abbr>/<abbr title="International Electrotechnical Commission">IEC</abbr> 26300 &#8211; OpenDocument Text and Spreadsheet, <abbr title="Microsoft Word 2000">Word</abbr>, and others.</li>
</ul>
<h2>Install PHPMyAdmin on Debian 10 Buster</h2>
<h3>1) Install LAMP on Debian 10</h3>
<p>As it is a web application, it requires a fully functional LAMP server. Of course, PHPMyAdmin is compatible with Nginx but in this case, we will focus on Apache.</p>
<p>Then, install LAMP on Debian 10. For that, we have a tutorial to help you with that:</p>
<p>Read, <a href="https://www.osradar.com/install-lamp-on-debian-10/" rel="noopener">How to install LAMP on Debian 10 Buster?</a></p>
<p>After that, you can continue with the installation.</p>
<h3>2) Download and install PHPMyAdmin on Debian 10</h3>
<p>At the time of writing this post, the latest stable version of PHPMyAdmin is 4.9.0.1. You can always go to the project website and check which is the latest stable version.</p>
<p>Now we proceed to download it:</p>
<pre>:~$ cd /tmp/
:~$ wget https://files.phpmyadmin.net/phpMyAdmin/4.9.0.1/phpMyAdmin-4.9.0.1-all-languages.tar.gz</pre>
<p><figure id="attachment_13146" aria-describedby="caption-attachment-13146" style="width: 1364px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-13146" src="https://www.osradar.com/wp-content/uploads/2019/08/1-13.jpeg" alt="1.- Download and install PHPMyAdmin on Debian 10" width="1364" height="261" srcset="https://www.osradar.com/wp-content/uploads/2019/08/1-13.jpeg 1364w, https://www.osradar.com/wp-content/uploads/2019/08/1-13-300x57.jpeg 300w, https://www.osradar.com/wp-content/uploads/2019/08/1-13-768x147.jpeg 768w, https://www.osradar.com/wp-content/uploads/2019/08/1-13-1024x196.jpeg 1024w, https://www.osradar.com/wp-content/uploads/2019/08/1-13-696x133.jpeg 696w, https://www.osradar.com/wp-content/uploads/2019/08/1-13-1068x204.jpeg 1068w" sizes="(max-width: 1364px) 100vw, 1364px" /><figcaption id="caption-attachment-13146" class="wp-caption-text">1.- Download and install PHPMyAdmin on Debian 10</figcaption></figure></p>
<p>Next, decompress it and move it to <code>/usr/share/phpmyadmin</code>.</p>
<pre>:~$ tar xvf phpMyAdmin-4.9.0.1-all-languages.tar.gz
:~$ sudo mv phpMyAdmin-4.9.0.1-all-languages /usr/share/phpmyadmin</pre>
<p>For PHPMyAdmin to work properly it is necessary to create a temporary folder dedicated to the application.</p>
<pre class="wp-block-preformatted">:~$ sudo mkdir -p /var/lib/phpmyadmin/tmp
:~$ sudo chown -R www-data:www-data /var/lib/phpmyadmin</pre>
<p>Then, create the configuration folder for PHPMyAdmin and copy the default configuration file into it.</p>
<pre>:~$ sudo mkdir /etc/phpmyadmin/
:~$ sudo cp /usr/share/phpmyadmin/config.sample.inc.php  /usr/share/phpmyadmin/config.inc.php</pre>
<p>A passphrase must be defined in the PHPMyAdmin configuration file. It is also necessary to indicate which is the path of the newly created PHPMyAdmin temporary folder.</p>
<pre>:~$ sudo nano /usr/share/phpmyadmin/config.inc.php</pre>
<pre>$cfg['blowfish_secret'] = '[passphrase]'; 
$cfg['TempDir'] = '/var/lib/phpmyadmin/tmp';</pre>
<p><figure id="attachment_13147" aria-describedby="caption-attachment-13147" style="width: 817px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-13147" src="https://www.osradar.com/wp-content/uploads/2019/08/2-12.jpeg" alt="2.- Configuring PHPMyAdmin" width="817" height="160" srcset="https://www.osradar.com/wp-content/uploads/2019/08/2-12.jpeg 817w, https://www.osradar.com/wp-content/uploads/2019/08/2-12-300x59.jpeg 300w, https://www.osradar.com/wp-content/uploads/2019/08/2-12-768x150.jpeg 768w, https://www.osradar.com/wp-content/uploads/2019/08/2-12-696x136.jpeg 696w" sizes="(max-width: 817px) 100vw, 817px" /><figcaption id="caption-attachment-13147" class="wp-caption-text">2.- Configuring PHPMyAdmin</figcaption></figure></p>
<p><figure id="attachment_13148" aria-describedby="caption-attachment-13148" style="width: 490px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-13148" src="https://www.osradar.com/wp-content/uploads/2019/08/3-13.jpeg" alt="3.- Configuring PHPMyAdmin on Debian 10" width="490" height="112" srcset="https://www.osradar.com/wp-content/uploads/2019/08/3-13.jpeg 490w, https://www.osradar.com/wp-content/uploads/2019/08/3-13-300x69.jpeg 300w, https://www.osradar.com/wp-content/uploads/2019/08/3-13-485x112.jpeg 485w" sizes="(max-width: 490px) 100vw, 490px" /><figcaption id="caption-attachment-13148" class="wp-caption-text">3.- Configuring PHPMyAdmin on Debian 10</figcaption></figure></p>
<p>Save the changes and close the file.</p>
<p>The next step is to create a new virtual host to make PHPMyAdmin work fully. To do this, create a new file and paste the following:</p>
<pre class="wp-block-preformatted">:~$ sudo nano /etc/apache2/conf-enabled/phpmyadmin.conf</pre>
<pre class="wp-block-code">Alias /phpmyadmin /usr/share/phpmyadmin

&lt;Directory /usr/share/phpmyadmin&gt;
    Options SymLinksIfOwnerMatch
    DirectoryIndex index.php

    &lt;IfModule mod_php5.c&gt;
        &lt;IfModule mod_mime.c&gt;
            AddType application/x-httpd-php .php
        &lt;/IfModule&gt;
        &lt;FilesMatch ".+\.php$"&gt;
            SetHandler application/x-httpd-php
        &lt;/FilesMatch&gt;

        php_value include_path .
        php_admin_value upload_tmp_dir /var/lib/phpmyadmin/tmp
        php_admin_value open_basedir /usr/share/phpmyadmin/:/etc/phpmyadmin/:/var/lib/phpmyadmin/:/usr/share/php/php-gettext/:/usr/share/php/php-php-gettext/:/usr/share/javascript/:/usr/share/php/tcpdf/:/usr/share/doc/phpmyadmin/:/usr/share/php/phpseclib/
        php_admin_value mbstring.func_overload 0
    &lt;/IfModule&gt;
    &lt;IfModule mod_php.c&gt;
        &lt;IfModule mod_mime.c&gt;
            AddType application/x-httpd-php .php
        &lt;/IfModule&gt;
        &lt;FilesMatch ".+\.php$"&gt;
            SetHandler application/x-httpd-php
        &lt;/FilesMatch&gt;

        php_value include_path .
        php_admin_value upload_tmp_dir /var/lib/phpmyadmin/tmp
        php_admin_value open_basedir /usr/share/phpmyadmin/:/etc/phpmyadmin/:/var/lib/phpmyadmin/:/usr/share/php/php-gettext/:/usr/share/php/php-php-gettext/:/usr/share/javascript/:/usr/share/php/tcpdf/:/usr/share/doc/phpmyadmin/:/usr/share/php/phpseclib/
        php_admin_value mbstring.func_overload 0
    &lt;/IfModule&gt;

&lt;/Directory&gt;

&lt;Directory /usr/share/phpmyadmin/setup&gt;
    &lt;IfModule mod_authz_core.c&gt;
        &lt;IfModule mod_authn_file.c&gt;
            AuthType Basic
            AuthName "phpMyAdmin Setup"
            AuthUserFile /etc/phpmyadmin/htpasswd.setup
        &lt;/IfModule&gt;
        Require valid-user
    &lt;/IfModule&gt;
&lt;/Directory&gt;


&lt;Directory /usr/share/phpmyadmin/templates&gt;
    Require all denied
&lt;/Directory&gt;
&lt;Directory /usr/share/phpmyadmin/libraries&gt;
    Require all denied
&lt;/Directory&gt;
&lt;Directory /usr/share/phpmyadmin/setup/lib&gt;
    Require all denied
&lt;/Directory&gt;</pre>
<p>Save the changes and close the file.</p>
<p>Next enable the new virtualhost.</p>
<pre>:~$ sudo a2enmod rewrite
:~$ sudo systemctl restart apache2</pre>
<p>Now you can open your web browser and go to <code>http://your-server/phpmyadmin</code>. You will see this:</p>
<p><figure id="attachment_13149" aria-describedby="caption-attachment-13149" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-13149" src="https://www.osradar.com/wp-content/uploads/2019/08/4-4.png" alt="4.- PHPMyAdmin running on Debian 10" width="1366" height="664" srcset="https://www.osradar.com/wp-content/uploads/2019/08/4-4.png 1366w, https://www.osradar.com/wp-content/uploads/2019/08/4-4-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/08/4-4-768x373.png 768w, https://www.osradar.com/wp-content/uploads/2019/08/4-4-1024x498.png 1024w, https://www.osradar.com/wp-content/uploads/2019/08/4-4-696x338.png 696w, https://www.osradar.com/wp-content/uploads/2019/08/4-4-1068x519.png 1068w, https://www.osradar.com/wp-content/uploads/2019/08/4-4-864x420.png 864w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-13149" class="wp-caption-text">4.- PHPMyAdmin running on Debian 10</figcaption></figure></p>
<p>So, that is it.</p>
<h2>Conclusion</h2>
<p>PHPMyAdmin is a simple, fast and easy to install the application with which managing a MySQL or MariaDB instance becomes much easier. It is of great help to both novices and more experienced developers.</p>
<p>Please share this post and join <a href="https://t.me/osradar">our Telegram channel</a>.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-phpmyadmin-debian-10/">Install PHPMyAdmin on Debian 10</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-phpmyadmin-debian-10/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
		<item>
		<title>How to solve the &#8220;Access denied for root&#8221; error on PhpMyAdmin log in?</title>
		<link>https://www.osradar.com/how-to-solve-the-access-denied-for-root-error-on-phpmyadmin-log-in/</link>
					<comments>https://www.osradar.com/how-to-solve-the-access-denied-for-root-error-on-phpmyadmin-log-in/#comments</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Tue, 04 Jun 2019 00:22:32 +0000</pubDate>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[bionic]]></category>
		<category><![CDATA[Databases]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[mariadb]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[phpMyAdmin]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[Tricks]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[ubuntu]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=12315</guid>

					<description><![CDATA[<p>In our recent article, we explain how to install the latest PhpMyAdmin on Ubuntu 18.04. We explain the advantages that this may have. For example, with the updates to the program improves its usability and stability. This is important when working with data. However, you may not be able to log in as a root [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-solve-the-access-denied-for-root-error-on-phpmyadmin-log-in/">How to solve the &#8220;Access denied for root&#8221; error on PhpMyAdmin log in?</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 our recent article, we explain <a href="https://www.osradar.com/how-to-install-the-latest-phpmyadmin-on-ubuntu-18-04/">how to install the latest PhpMyAdmin on Ubuntu 18.04</a>. We explain the advantages that this may have. For example, with the updates to the program improves its usability and stability. This is important when working with data. However, you may not be able to log in as a root user. That is why in this post I will show you How to solve the &#8220;Access denied for root&#8221; error on PhpMyAdmin log in?</p>
<h2>The &#8220;Access denied for root&#8221; error on PhpMyAdmin log in</h2>
<p>The problem arises because, from version 5.7 of <a href="https://www.osaradar.com/tag/mysql/">MySQL</a> and <a href="https://www.osaradar.com/tag/mariadb/">MariaDB</a> 10, the root user will only be able to log in if it is executed as superuser. That is, PhpMyAdmin runs through the non-root user of the operating system. Then, from <a href="https://www.phpmyadmin.net/">PhpMyAdmin</a> the root user cannot be logged in.</p>
<p>This situation can be very annoying but it has its reason to be. Those of us who administer databases know that it is not recommended to leave the root user enabled. This is because if the root user is compromised, all data will be compromised. The correct security policy is not to allow its use unless you use remote access with strong security policies.</p>
<p>On the other hand, PhpMyAdmin also understands this situation and does not attempt to provide a solution that could compromise server security.</p>
<h2>So, what is the solution?</h2>
<p>The optimal solution is to create a new user with all permissions on the database. With this, you will be able to perform many operations from PhpMyAdmin without any logging problems.</p>
<p>To do this, we need to open a terminal and connect to our MySQL or MariaDB server.</p>
<p><strong>Note that to use the root user in MySQL / MariaDB you must use sudo. If you remove it, it will give the same error as in PhpMyAdmin. That is, the error comes from MySQL / MariaDB.</strong></p>
<pre>:~$ mysql -u root -p
ERROR 1698 (28000): Access denied for user 'root'@'localhost'</pre>
<p>So, you have to use sudo or to be the system root user.</p>
<pre>:~$ sudo mysql -u root -p</pre>
<p>Next, create the new user.</p>
<pre>&gt;<code class="language-sql"><span class="token keyword">CREATE</span> <span class="token keyword">USER</span> <span class="token string">'new_user'</span>@'<span class="token operator">%</span><span class="token string">' IDENTIFIED BY '</span>your-password'<span class="token punctuation">;</span></code></pre>
<p><em><strong>Note: The % sign means that the new user will be able to connect to the MySQL / MariaDB server from any IP.</strong></em></p>
<p>Then assign the permissions to this new user.</p>
<pre>&gt; GRANT ALL PRIVILEGES ON *.* TO 'new_user'@'%' WITH GRANT OPTION;</pre>
<p><figure id="attachment_12316" aria-describedby="caption-attachment-12316" style="width: 879px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12316" src="https://www.osradar.com/wp-content/uploads/2019/05/1-16.png" alt="1.- Fixing the error on the phpmyadmin log in" width="879" height="349" srcset="https://www.osradar.com/wp-content/uploads/2019/05/1-16.png 879w, https://www.osradar.com/wp-content/uploads/2019/05/1-16-300x119.png 300w, https://www.osradar.com/wp-content/uploads/2019/05/1-16-768x305.png 768w, https://www.osradar.com/wp-content/uploads/2019/05/1-16-696x276.png 696w" sizes="(max-width: 879px) 100vw, 879px" /><figcaption id="caption-attachment-12316" class="wp-caption-text">1.- Fixing the error on the phpmyadmin login</figcaption></figure></p>
<p>Now open your PHPMyAdmin and you should be able to log in with your new user.</p>
<p><figure id="attachment_12317" aria-describedby="caption-attachment-12317" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12317" src="https://www.osradar.com/wp-content/uploads/2019/05/2-15.png" alt="2.- Phpmyadmin log in" width="1366" height="666" srcset="https://www.osradar.com/wp-content/uploads/2019/05/2-15.png 1366w, https://www.osradar.com/wp-content/uploads/2019/05/2-15-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/05/2-15-768x374.png 768w, https://www.osradar.com/wp-content/uploads/2019/05/2-15-1024x499.png 1024w, https://www.osradar.com/wp-content/uploads/2019/05/2-15-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2019/05/2-15-696x339.png 696w, https://www.osradar.com/wp-content/uploads/2019/05/2-15-1068x521.png 1068w, https://www.osradar.com/wp-content/uploads/2019/05/2-15-861x420.png 861w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-12317" class="wp-caption-text">2.- Phpmyadmin log in</figcaption></figure></p>
<p><figure id="attachment_12318" aria-describedby="caption-attachment-12318" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12318" src="https://www.osradar.com/wp-content/uploads/2019/05/3-13.png" alt="3.- Phpmyadmin working" width="1366" height="666" srcset="https://www.osradar.com/wp-content/uploads/2019/05/3-13.png 1366w, https://www.osradar.com/wp-content/uploads/2019/05/3-13-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/05/3-13-768x374.png 768w, https://www.osradar.com/wp-content/uploads/2019/05/3-13-1024x499.png 1024w, https://www.osradar.com/wp-content/uploads/2019/05/3-13-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2019/05/3-13-696x339.png 696w, https://www.osradar.com/wp-content/uploads/2019/05/3-13-1068x521.png 1068w, https://www.osradar.com/wp-content/uploads/2019/05/3-13-861x420.png 861w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-12318" class="wp-caption-text">3.- Phpmyadmin working</figcaption></figure></p>
<p>So, for security reasons PhpMyAdmin cannot log in as root user, however to solve the situation you can create another user with similar permissions.</p>
<h2>Conclusion</h2>
<p>In this post, you have learned to solve The &#8220;Access denied for root&#8221; error on PhpMyAdmin log in. This way you will be able to enjoy this great MySQL / MariaDB administration program.</p>
<p>You can also read: <a href="https://www.osradar.com/reset-the-mysql-mariadb-root-password/" target="_blank" rel="noopener noreferrer">How to reset the MySQL / MariaDB root password?</a></p>
<p>Please share this post with your friends.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-solve-the-access-denied-for-root-error-on-phpmyadmin-log-in/">How to solve the &#8220;Access denied for root&#8221; error on PhpMyAdmin log in?</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-solve-the-access-denied-for-root-error-on-phpmyadmin-log-in/feed/</wfw:commentRss>
			<slash:comments>4</slash:comments>
		
		
			</item>
		<item>
		<title>How to install the latest PhpMyAdmin on Ubuntu 18.04?</title>
		<link>https://www.osradar.com/how-to-install-the-latest-phpmyadmin-on-ubuntu-18-04/</link>
					<comments>https://www.osradar.com/how-to-install-the-latest-phpmyadmin-on-ubuntu-18-04/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Mon, 03 Jun 2019 18:49:49 +0000</pubDate>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[bionic]]></category>
		<category><![CDATA[Databases]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[mariadb]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[phpMyAdmin]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[ubuntu]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=12309</guid>

					<description><![CDATA[<p>Ubuntu 18.04 is the latest LTS version of this huge Linux distribution. So it&#8217;s no wonder it&#8217;s the one chosen for web application development. In the same way, Ubuntu has many tools for this purpose, however, many of them are not updated to its latest version and makes us miss some new features. One of [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-install-the-latest-phpmyadmin-on-ubuntu-18-04/">How to install the latest PhpMyAdmin on Ubuntu 18.04?</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Ubuntu 18.04 is the latest LTS version of this huge Linux distribution. So it&#8217;s no wonder it&#8217;s the one chosen for web application development. In the same way, Ubuntu has many tools for this purpose, however, many of them are not updated to its latest version and makes us miss some new features. One of these tools is PhpMyAdmin which makes it easier for beginners to use and manipulate MySQL or MariaDB data. That is why, in this post, I will show you how to install the latest PhpMyAdmin in Ubuntu 18.04. It is quite easy.</p>
<h2>What is PhpMyAdmin?</h2>
<p><a href="https://www.phpmyadmin.net/">PhpMyAdmin</a> is a web-based open source tool that helps manipulate <a href="https://www.osradar.com/tag/mysql/">MySQL</a> or <a href="https://www.osradar.com/tag/mysql/">MariaDB</a>. It is written in PHP and is a free alternative to many paying customers. It supports many of the most common operations performed with these database managers. For example, manipulation and control of data, tables, user as well as export and import data.</p>
<p>On the other hand, PhpMyAdmin has extensive documentation that makes it easy to use. In addition, it has support for many languages so you will not have problems finding yours.</p>
<p>It can be said that PhpMyAdmin is a professional community support tool and is very useful to use.</p>
<p>So, let us start to get the latest PhpMyAdmin on Ubuntu 18.04.</p>
<h2>Install the latest PhpMyAdmin on Ubuntu 18.04</h2>
<h3>1) Install LAMP stack</h3>
<p>For better or worse, PhpMyAdmin is a web application. This implies that the necessary software to run a web application must be installed on our computer. That is to say, you have to install LAMP.</p>
<p>However, you can read our post about <a href="https://www.osradar.com/how-to-install-lamp-on-ubuntu-18-04-lts/">How to install LAMP on Ubuntu 18.04</a>?</p>
<p>On the other hand, it is good to note that to install PHP and its modules, I recommend these:</p>
<pre>:~$ sudo apt install php7.2 libapache2-mod-php7.2 php7.2-common php7.2-curl php7.2-mbstring php7.2-xmlrpc php7.2-mysql php7.2-json</pre>
<h3>2) Download and install PhpMyAdmin on Ubuntu 18.04</h3>
<p>Now it&#8217;s time to install PhpMyAdmin. As I mentioned at the beginning, Ubuntu has this tool in its repositories, but it&#8217;s a bit old. The best way to install it is through its website.</p>
<p>Open a terminal and run:</p>
<pre>:~$ cd /tmp
:~$ wget https://files.phpmyadmin.net/phpMyAdmin/4.8.5/phpMyAdmin-4.8.5-all-languages.zip</pre>
<p><figure id="attachment_12310" aria-describedby="caption-attachment-12310" style="width: 1365px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12310" src="https://www.osradar.com/wp-content/uploads/2019/05/1-15.png" alt="1.- Download and install PhpMyAdmin on Ubuntu 18.04" width="1365" height="311" srcset="https://www.osradar.com/wp-content/uploads/2019/05/1-15.png 1365w, https://www.osradar.com/wp-content/uploads/2019/05/1-15-300x68.png 300w, https://www.osradar.com/wp-content/uploads/2019/05/1-15-768x175.png 768w, https://www.osradar.com/wp-content/uploads/2019/05/1-15-1024x233.png 1024w, https://www.osradar.com/wp-content/uploads/2019/05/1-15-696x159.png 696w, https://www.osradar.com/wp-content/uploads/2019/05/1-15-1068x243.png 1068w" sizes="(max-width: 1365px) 100vw, 1365px" /><figcaption id="caption-attachment-12310" class="wp-caption-text">1.- Download and install PhpMyAdmin on Ubuntu 18.04</figcaption></figure></p>
<p>Then, decompress it. And move it to /usr/share/phpmyadmin.</p>
<pre>:~$ sudo apt install unzip
:~$ unzip phpMyAdmin-4.8.5-all-languages.zip
:~$ sudo mv phpMyAdmin-4.8.5-all-languages /usr/share/phpmyadmin</pre>
<p>PhpMyAdmin handles temporary files. It&#8217;s a good idea to create a folder to do this. Then, set the correct permission to it.</p>
<pre>:~$ sudo mkdir -p /var/lib/phpmyadmin/tmp
:~$ sudo chown -R www-data:www-data /var/lib/phpmyadmin</pre>
<p>Then, you also need to create a configuration folder for PhpMyAdmin.</p>
<pre>:~$ sudo mkdir /etc/phpmyadmin/</pre>
<p>After this, create the initial PhpMyAdmin configuration file. Also, inside that file, you have to change the access password and define the temporary folder.</p>
<pre>:~$ sudo cp /usr/share/phpmyadmin/config.sample.inc.php  /usr/share/phpmyadmin/config.inc.php
:~$ sudo nano /usr/share/phpmyadmin/config.inc.php
$cfg['blowfish_secret'] = 'your-password'; 
$cfg['TempDir'] = '/var/lib/phpmyadmin/tmp';</pre>
<p><figure id="attachment_12311" aria-describedby="caption-attachment-12311" style="width: 1085px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12311" src="https://www.osradar.com/wp-content/uploads/2019/05/2-14.png" alt="2.- Configuring PhpMyAdmin" width="1085" height="449" srcset="https://www.osradar.com/wp-content/uploads/2019/05/2-14.png 1085w, https://www.osradar.com/wp-content/uploads/2019/05/2-14-300x124.png 300w, https://www.osradar.com/wp-content/uploads/2019/05/2-14-768x318.png 768w, https://www.osradar.com/wp-content/uploads/2019/05/2-14-1024x424.png 1024w, https://www.osradar.com/wp-content/uploads/2019/05/2-14-696x288.png 696w, https://www.osradar.com/wp-content/uploads/2019/05/2-14-1068x442.png 1068w, https://www.osradar.com/wp-content/uploads/2019/05/2-14-1015x420.png 1015w" sizes="(max-width: 1085px) 100vw, 1085px" /><figcaption id="caption-attachment-12311" class="wp-caption-text">2.- Configuring PhpMyAdmin</figcaption></figure></p>
<p>Press CTRL + O to save the changes and CTRL + X to exit.</p>
<p>The next step is to make a virtual host for PhpMyAdmin.</p>
<pre>:~$ sudo nano /etc/apache2/conf-enabled/phpmyadmin.conf</pre>
<p>So, add the following:</p>
<pre>Alias /phpmyadmin /usr/share/phpmyadmin

&lt;Directory /usr/share/phpmyadmin&gt;
    Options SymLinksIfOwnerMatch
    DirectoryIndex index.php

    &lt;IfModule mod_php5.c&gt;
        &lt;IfModule mod_mime.c&gt;
            AddType application/x-httpd-php .php
        &lt;/IfModule&gt;
        &lt;FilesMatch ".+\.php$"&gt;
            SetHandler application/x-httpd-php
        &lt;/FilesMatch&gt;

        php_value include_path .
        php_admin_value upload_tmp_dir /var/lib/phpmyadmin/tmp
        php_admin_value open_basedir /usr/share/phpmyadmin/:/etc/phpmyadmin/:/var/lib/phpmyadmin/:/usr/share/php/php-gettext/:/usr/share/php/php-php-gettext/:/usr/share/javascript/:/usr/share/php/tcpdf/:/usr/share/doc/phpmyadmin/:/usr/share/php/phpseclib/
        php_admin_value mbstring.func_overload 0
    &lt;/IfModule&gt;
    &lt;IfModule mod_php.c&gt;
        &lt;IfModule mod_mime.c&gt;
            AddType application/x-httpd-php .php
        &lt;/IfModule&gt;
        &lt;FilesMatch ".+\.php$"&gt;
            SetHandler application/x-httpd-php
        &lt;/FilesMatch&gt;

        php_value include_path .
        php_admin_value upload_tmp_dir /var/lib/phpmyadmin/tmp
        php_admin_value open_basedir /usr/share/phpmyadmin/:/etc/phpmyadmin/:/var/lib/phpmyadmin/:/usr/share/php/php-gettext/:/usr/share/php/php-php-gettext/:/usr/share/javascript/:/usr/share/php/tcpdf/:/usr/share/doc/phpmyadmin/:/usr/share/php/phpseclib/
        php_admin_value mbstring.func_overload 0
    &lt;/IfModule&gt;

&lt;/Directory&gt;

# Authorize for setup
&lt;Directory /usr/share/phpmyadmin/setup&gt;
    &lt;IfModule mod_authz_core.c&gt;
        &lt;IfModule mod_authn_file.c&gt;
            AuthType Basic
            AuthName "phpMyAdmin Setup"
            AuthUserFile /etc/phpmyadmin/htpasswd.setup
        &lt;/IfModule&gt;
        Require valid-user
    &lt;/IfModule&gt;
&lt;/Directory&gt;

# Disallow web access to directories that don't need it
&lt;Directory /usr/share/phpmyadmin/templates&gt;
    Require all denied
&lt;/Directory&gt;
&lt;Directory /usr/share/phpmyadmin/libraries&gt;
    Require all denied
&lt;/Directory&gt;
&lt;Directory /usr/share/phpmyadmin/setup/lib&gt;
    Require all denied
&lt;/Directory&gt;</pre>
<p>Press CTRL + O to save the changes and CTRL + X to close the file.</p>
<p>Restart Apache:</p>
<pre>:~$ sudo systemctl restart apache2</pre>
<p>Now, you can access to PhpMyAdmin using the web browser. http://server/phpmyadmin. Then, Just login with your username and password.</p>
<p><figure id="attachment_12312" aria-describedby="caption-attachment-12312" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12312" src="https://www.osradar.com/wp-content/uploads/2019/05/3-12.png" alt="3.- PhpMyAdmin" width="1366" height="666" srcset="https://www.osradar.com/wp-content/uploads/2019/05/3-12.png 1366w, https://www.osradar.com/wp-content/uploads/2019/05/3-12-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/05/3-12-768x374.png 768w, https://www.osradar.com/wp-content/uploads/2019/05/3-12-1024x499.png 1024w, https://www.osradar.com/wp-content/uploads/2019/05/3-12-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2019/05/3-12-696x339.png 696w, https://www.osradar.com/wp-content/uploads/2019/05/3-12-1068x521.png 1068w, https://www.osradar.com/wp-content/uploads/2019/05/3-12-861x420.png 861w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-12312" class="wp-caption-text">3.- PhpMyAdmin</figcaption></figure></p>
<p>And that&#8217;s it.</p>
<h2>Conclusion</h2>
<p>PhpMyAdmin is a very effective tool to manage MySQL or MariaDB quickly and professionally. This type of tools, it is advisable to have always updated, because with this we will be able to take advantage of it more.</p>
<p>Please share this post with your friends.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-install-the-latest-phpmyadmin-on-ubuntu-18-04/">How to install the latest PhpMyAdmin on Ubuntu 18.04?</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-latest-phpmyadmin-on-ubuntu-18-04/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Graphical clients for SQL in Linux</title>
		<link>https://www.osradar.com/graphical-clients-for-sql-in-linux/</link>
					<comments>https://www.osradar.com/graphical-clients-for-sql-in-linux/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Tue, 12 Mar 2019 20:13:14 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Unix]]></category>
		<category><![CDATA[clients]]></category>
		<category><![CDATA[gui]]></category>
		<category><![CDATA[mariadb]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[MyWebSQL]]></category>
		<category><![CDATA[Pgadmin]]></category>
		<category><![CDATA[phpMyAdmin]]></category>
		<category><![CDATA[postgresql]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[SQLite]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=11392</guid>

					<description><![CDATA[<p>SQL Language is one of the most popular languages of our time. Many of the most popular database managers use SQL as their statement language. That is why SQL is so popular. However, it is a language that many at first may not like or may become complicated. Also managing data in a database using [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/graphical-clients-for-sql-in-linux/">Graphical clients for SQL in 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>SQL Language is one of the most popular languages of our time. Many of the most popular database managers use SQL as their statement language. That is why SQL is so popular. However, it is a language that many at first may not like or may become complicated. Also managing data in a database using only the terminal is not as efficient as possible. Imagine many tables with thousands of records, it is not efficient to do it that way. So in this article, I will tell you about some graphical clients for SQL. All with the particularity of being open source and installable in Linux.</p>
<p>As I mentioned at the beginning, managing data in a database that uses SQL in a terminal is not appropriate. In addition, insecure is impractical. So recently I showed you<a href="https://www.osradar.com/some-graphical-clients-for-git/" rel="noopener noreferrer"> some graphical clients for Git</a>, today I will do the same with SQL. This way you will be able to work more and better.</p>
<p>Let us start.</p>
<h1>Graphical clients for SQL</h1>
<h2>1) MyWebSQL</h2>
<p>I start with MyWebSQL. It is a web application to manage SQL databases. However, it places special emphasis on MySQL.</p>
<p>MyWebSQL is built with PHP so it requires a web server to function. Its graphical interface is great because it resembles a desktop application. It is well done and very well taken care of.</p>
<p><figure id="attachment_11393" aria-describedby="caption-attachment-11393" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-11393" src="https://www.osradar.com/wp-content/uploads/2019/03/14.png" alt="1.- MyWebSQL" width="1366" height="665" srcset="https://www.osradar.com/wp-content/uploads/2019/03/14.png 1366w, https://www.osradar.com/wp-content/uploads/2019/03/14-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/03/14-768x374.png 768w, https://www.osradar.com/wp-content/uploads/2019/03/14-1024x499.png 1024w, https://www.osradar.com/wp-content/uploads/2019/03/14-696x339.png 696w, https://www.osradar.com/wp-content/uploads/2019/03/14-1068x520.png 1068w, https://www.osradar.com/wp-content/uploads/2019/03/14-863x420.png 863w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-11393" class="wp-caption-text">1.- MyWebSQL</figcaption></figure></p>
<p>You can find much more information about MyWebSQL in <a href="https://www.osradar.com/install-mywebsql-on-centos-7/" rel="noopener noreferrer">our post about it</a> or on <a href="http://mywebsql.net/" rel="noopener noreferrer">their website.</a></p>
<h2>2) DBeaver</h2>
<p>DBeaver is a very powerful graphical SQL client. It is an open source desktop application that stands out for its simplicity and power. It supports many SQL database managers such as DBeaver, SQLite or PostgreSQL. That&#8217;s why many developers trust their work with SQL to DBeaver.</p>
<p><figure id="attachment_11394" aria-describedby="caption-attachment-11394" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-11394" src="https://www.osradar.com/wp-content/uploads/2019/03/10-2.png" alt="2.- Dbeaver" width="1366" height="768" srcset="https://www.osradar.com/wp-content/uploads/2019/03/10-2.png 1366w, https://www.osradar.com/wp-content/uploads/2019/03/10-2-300x169.png 300w, https://www.osradar.com/wp-content/uploads/2019/03/10-2-768x432.png 768w, https://www.osradar.com/wp-content/uploads/2019/03/10-2-1024x576.png 1024w, https://www.osradar.com/wp-content/uploads/2019/03/10-2-696x391.png 696w, https://www.osradar.com/wp-content/uploads/2019/03/10-2-1068x600.png 1068w, https://www.osradar.com/wp-content/uploads/2019/03/10-2-747x420.png 747w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-11394" class="wp-caption-text">2.- Dbeaver</figcaption></figure></p>
<p>On the other hand, it requires <a href="https://www.osradar.com/how-to-install-oracle-java-on-ubuntu-18-10/" rel="noopener noreferrer">Java</a> to work so maybe those who have modest hardware will not like the idea.</p>
<p>We have also talked about <a href="https://dbeaver.io/" rel="noopener noreferrer">DBeaver</a> on our site so we invite you to stop by <a href="https://www.osradar.com/install-dbeaver-ubuntu-18-04-linux-mint-19/" rel="noopener noreferrer">this post</a> to learn how to install it.</p>
<h2>3) PHPMyAdmin</h2>
<p>If we have to talk about a very popular SQL tool in the educational field, that is <a href="https://www.phpmyadmin.net/" rel="noopener noreferrer">PHPMyAdmin</a>. It is a very popular and simple web interface for SQL language that contains everything you need to manage databases and SQL statements.</p>
<p>Being a web interface, it requires a web server, with all the advantages and disadvantages of the case. Ideal when you have a shared development of some application or centralized data.</p>
<p><figure id="attachment_11395" aria-describedby="caption-attachment-11395" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-11395" src="https://www.osradar.com/wp-content/uploads/2019/03/12-1.png" alt="3.- PHPMyAdmin" width="1366" height="666" srcset="https://www.osradar.com/wp-content/uploads/2019/03/12-1.png 1366w, https://www.osradar.com/wp-content/uploads/2019/03/12-1-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/03/12-1-768x374.png 768w, https://www.osradar.com/wp-content/uploads/2019/03/12-1-1024x499.png 1024w, https://www.osradar.com/wp-content/uploads/2019/03/12-1-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2019/03/12-1-696x339.png 696w, https://www.osradar.com/wp-content/uploads/2019/03/12-1-1068x521.png 1068w, https://www.osradar.com/wp-content/uploads/2019/03/12-1-861x420.png 861w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-11395" class="wp-caption-text">3.- PHPMyAdmin</figcaption></figure></p>
<p>Of course, PHPMyAdmin is available for Linux in a very simple way and is open source. So, <a href="https://www.osradar.com/how-to-install-the-latest-phpmyadmin-on-centos-7/" rel="noopener noreferrer">you can install it on CentOS</a>.</p>
<h2>4) PGAdmin</h2>
<p>If there is an SQL client specialized in PostgreSQL that is <a href="https://www.pgadmin.org/" rel="noopener noreferrer">pgAdmin</a>. This powerful PostgreSQL client is a work of art. Its interface is the best in all of Linux because it is simple and very flexible.</p>
<p><figure id="attachment_11396" aria-describedby="caption-attachment-11396" style="width: 808px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-11396" src="https://www.osradar.com/wp-content/uploads/2019/03/33.png" alt="PGAdmin" width="808" height="520" srcset="https://www.osradar.com/wp-content/uploads/2019/03/33.png 808w, https://www.osradar.com/wp-content/uploads/2019/03/33-300x193.png 300w, https://www.osradar.com/wp-content/uploads/2019/03/33-768x494.png 768w, https://www.osradar.com/wp-content/uploads/2019/03/33-696x448.png 696w, https://www.osradar.com/wp-content/uploads/2019/03/33-653x420.png 653w" sizes="(max-width: 808px) 100vw, 808px" /><figcaption id="caption-attachment-11396" class="wp-caption-text">4.- PGAdmin. Image from the pgadmin web site</figcaption></figure></p>
<p>PgAdmin is open source and is available for all Linux through a web server and <a href="https://www.osradar.com/get-the-latest-python-on-linux/" rel="noopener noreferrer">Python</a>.</p>
<h1>Conclusion</h1>
<p>Here are some of the most popular graphical SQL clients on Linux. Their use makes it much easier to manage the data in our SQL database. So it only remains for you to try and tell us your experience.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/graphical-clients-for-sql-in-linux/">Graphical clients for SQL in 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/graphical-clients-for-sql-in-linux/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to install the latest PhpMyAdmin on CentOS 7?</title>
		<link>https://www.osradar.com/how-to-install-the-latest-phpmyadmin-on-centos-7/</link>
					<comments>https://www.osradar.com/how-to-install-the-latest-phpmyadmin-on-centos-7/#comments</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Tue, 19 Feb 2019 12:22:59 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[CentOS]]></category>
		<category><![CDATA[Databases]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[mariadb]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[phpMyAdmin]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[Tutorial]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=10932</guid>

					<description><![CDATA[<p>In terms of practicality, managing MySQL data on a console is not recommended. Overotodo if you handle a lot of records and tables. For this, there are many professional solutions that can get us out of the problem, however, if the project is personal or is something small, you can use PhpMyAdmin. A solution well [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-install-the-latest-phpmyadmin-on-centos-7/">How to install the latest PhpMyAdmin on CentOS 7?</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>In terms of practicality, managing <a href="https://www.osradar.com/install-mysql-8-0-on-fedora-29-28-centos-rhel-7-6-6-10/" rel="noopener">MySQL</a> data on a console is not recommended. Overotodo if you handle a lot of records and tables. For this, there are many professional solutions that can get us out of the problem, however, if the project is personal or is something small, you can use PhpMyAdmin. A solution well known in Linux and that fulfills its objective in an efficient and simple way. With this in mind, I will teach you how to install the latest PhpMyAdmin on a server using <a href="https://osradar.com/tag/centos/" rel="noopener">CentOS</a> 7.</p>
<p><a href="https://www.phpmyadmin.net/" rel="noopener">PhpMyAdmin</a> is an open source tool created with PHP to visualize and manage the data of a MySQL server in a graphical way. It has the support of a large community behind it and you can perform multiple operations on MySQL such as executing sentences, importing or exporting databases. Among other things.</p>
<p>So, let us start.</p>
<h2>1. Install Apache web server and PHP</h2>
<p>Being a web tool, the first thing we have to do is install the Apache<a href="https://www.osradar.com/how-to-install-apache-gui-on-debian-9/" rel="noopener"> web server</a>. PhpMyAdmin also works with <a href="https://www.osradar.com/install-nginx-from-the-source-code-ubuntu-18-04/" rel="noopener">Ngnix</a> quite efficiently. However, Apache is the easiest to use and works just as well.</p>
<p>So, open a terminal and run:</p>
<pre>:~$ su
:~# yum install httpd</pre>
<p><figure id="attachment_10934" aria-describedby="caption-attachment-10934" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-10934" src="https://www.osradar.com/wp-content/uploads/2019/02/1-13.png" alt="1.- Install apache" width="1366" height="768" srcset="https://www.osradar.com/wp-content/uploads/2019/02/1-13.png 1366w, https://www.osradar.com/wp-content/uploads/2019/02/1-13-300x169.png 300w, https://www.osradar.com/wp-content/uploads/2019/02/1-13-768x432.png 768w, https://www.osradar.com/wp-content/uploads/2019/02/1-13-1024x576.png 1024w, https://www.osradar.com/wp-content/uploads/2019/02/1-13-696x391.png 696w, https://www.osradar.com/wp-content/uploads/2019/02/1-13-1068x600.png 1068w, https://www.osradar.com/wp-content/uploads/2019/02/1-13-747x420.png 747w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-10934" class="wp-caption-text">1.- Install apache</figcaption></figure></p>
<p>After that, it is necessary to install PHP. Obviously, PHP is available in the official CentOS 7 repositories, the problem is that it is a very old version and PhpMyAdmin requires at least PHP 7.1. Then, you need to install a recent version of PHP.</p>
<p>You can install PHP 7.2 on CentOS 7 easily using the steps shown in <a href="https://www.osradar.com/how-to-install-php-7-on-centos-7-in-an-easy-way/" rel="noopener">this</a> post.</p>
<p>Then, you need to install the PHP modules to work with PhpMyAdmin.</p>
<pre>:~# yum install php php-session php-json php-hash php-ctype php-mbstring php-zip php-gd php-curl php-openssl php-xml</pre>
<p><figure id="attachment_10935" aria-describedby="caption-attachment-10935" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-10935" src="https://www.osradar.com/wp-content/uploads/2019/02/2-12.png" alt="2.- Install PHP" width="1366" height="768" srcset="https://www.osradar.com/wp-content/uploads/2019/02/2-12.png 1366w, https://www.osradar.com/wp-content/uploads/2019/02/2-12-300x169.png 300w, https://www.osradar.com/wp-content/uploads/2019/02/2-12-768x432.png 768w, https://www.osradar.com/wp-content/uploads/2019/02/2-12-1024x576.png 1024w, https://www.osradar.com/wp-content/uploads/2019/02/2-12-696x391.png 696w, https://www.osradar.com/wp-content/uploads/2019/02/2-12-1068x600.png 1068w, https://www.osradar.com/wp-content/uploads/2019/02/2-12-747x420.png 747w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-10935" class="wp-caption-text">2.- Install PHP</figcaption></figure></p>
<p>Next, enable and start the Apache service.</p>
<pre>:~# systemctl enable httpd
:~# systemctl start httpd</pre>
<p>Then, enable Apache on the Firewall to allow access.</p>
<pre>:~# firewall-cmd --add-service=http --permanent
:~# firewall-cmd --reload</pre>
<p><figure id="attachment_10936" aria-describedby="caption-attachment-10936" style="width: 1000px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-10936" src="https://www.osradar.com/wp-content/uploads/2019/02/3-12.png" alt="3.- Firewall settings" width="1000" height="217" srcset="https://www.osradar.com/wp-content/uploads/2019/02/3-12.png 1000w, https://www.osradar.com/wp-content/uploads/2019/02/3-12-300x65.png 300w, https://www.osradar.com/wp-content/uploads/2019/02/3-12-768x167.png 768w, https://www.osradar.com/wp-content/uploads/2019/02/3-12-696x151.png 696w" sizes="(max-width: 1000px) 100vw, 1000px" /><figcaption id="caption-attachment-10936" class="wp-caption-text">3.- Firewall settings</figcaption></figure></p>
<p>To test if PHP is working, create a file called <code>test.php</code> on <code>/var/www/html/</code> with this content:</p>
<pre>:~# yum install nano
:~# nano /var/www/html/test.php</pre>
<pre>&lt;?php
phpinfo();
?&gt;</pre>
<p><figure id="attachment_10937" aria-describedby="caption-attachment-10937" style="width: 866px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-10937" src="https://www.osradar.com/wp-content/uploads/2019/02/4-9.png" alt="4.- PHP info" width="866" height="161" srcset="https://www.osradar.com/wp-content/uploads/2019/02/4-9.png 866w, https://www.osradar.com/wp-content/uploads/2019/02/4-9-300x56.png 300w, https://www.osradar.com/wp-content/uploads/2019/02/4-9-768x143.png 768w, https://www.osradar.com/wp-content/uploads/2019/02/4-9-696x129.png 696w" sizes="(max-width: 866px) 100vw, 866px" /><figcaption id="caption-attachment-10937" class="wp-caption-text">4.- PHP info</figcaption></figure></p>
<p>So, open your web browser and go to<code> http://SERVER_IP/test.php</code>.</p>
<p><figure id="attachment_10938" aria-describedby="caption-attachment-10938" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-10938" src="https://www.osradar.com/wp-content/uploads/2019/02/5-11.png" alt="5.- PHP and apache are working" width="1366" height="666" srcset="https://www.osradar.com/wp-content/uploads/2019/02/5-11.png 1366w, https://www.osradar.com/wp-content/uploads/2019/02/5-11-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/02/5-11-768x374.png 768w, https://www.osradar.com/wp-content/uploads/2019/02/5-11-1024x499.png 1024w, https://www.osradar.com/wp-content/uploads/2019/02/5-11-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2019/02/5-11-696x339.png 696w, https://www.osradar.com/wp-content/uploads/2019/02/5-11-1068x521.png 1068w, https://www.osradar.com/wp-content/uploads/2019/02/5-11-861x420.png 861w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-10938" class="wp-caption-text">5.- PHP and Apache are working</figcaption></figure></p>
<p>So, Apache and PHP are working.</p>
<h2>2. Install and configure MariaDB</h2>
<p>The next step is to install MariaDB from the repositories. So it is pretty easy to do.</p>
<pre>:~# yum install mariadb-server</pre>
<p><figure id="attachment_10939" aria-describedby="caption-attachment-10939" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-10939" src="https://www.osradar.com/wp-content/uploads/2019/02/6-10.png" alt="6.- Install MariaDB" width="1366" height="768" srcset="https://www.osradar.com/wp-content/uploads/2019/02/6-10.png 1366w, https://www.osradar.com/wp-content/uploads/2019/02/6-10-300x169.png 300w, https://www.osradar.com/wp-content/uploads/2019/02/6-10-768x432.png 768w, https://www.osradar.com/wp-content/uploads/2019/02/6-10-1024x576.png 1024w, https://www.osradar.com/wp-content/uploads/2019/02/6-10-696x391.png 696w, https://www.osradar.com/wp-content/uploads/2019/02/6-10-1068x600.png 1068w, https://www.osradar.com/wp-content/uploads/2019/02/6-10-747x420.png 747w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-10939" class="wp-caption-text">6.- Install MariaDB</figcaption></figure></p>
<p>After that, enable and start it.</p>
<pre>:~# systemctl enable mariadb
:~# systemctl start mariadb</pre>
<p><figure id="attachment_10940" aria-describedby="caption-attachment-10940" style="width: 1061px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-10940" src="https://www.osradar.com/wp-content/uploads/2019/02/7-10.png" alt="7.- Start mariadb" width="1061" height="180" srcset="https://www.osradar.com/wp-content/uploads/2019/02/7-10.png 1061w, https://www.osradar.com/wp-content/uploads/2019/02/7-10-300x51.png 300w, https://www.osradar.com/wp-content/uploads/2019/02/7-10-768x130.png 768w, https://www.osradar.com/wp-content/uploads/2019/02/7-10-1024x174.png 1024w, https://www.osradar.com/wp-content/uploads/2019/02/7-10-696x118.png 696w" sizes="(max-width: 1061px) 100vw, 1061px" /><figcaption id="caption-attachment-10940" class="wp-caption-text">7.- Start MariaDB</figcaption></figure></p>
<p>Next, configure MariaDB using the<code> mysql_secure_installation</code> script to set a root password.</p>
<pre>:~# mysql_secure_installation</pre>
<p><figure id="attachment_10941" aria-describedby="caption-attachment-10941" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-10941" src="https://www.osradar.com/wp-content/uploads/2019/02/8-11.png" alt="8.- Using mysql_secure_installation" width="1366" height="768" srcset="https://www.osradar.com/wp-content/uploads/2019/02/8-11.png 1366w, https://www.osradar.com/wp-content/uploads/2019/02/8-11-300x169.png 300w, https://www.osradar.com/wp-content/uploads/2019/02/8-11-768x432.png 768w, https://www.osradar.com/wp-content/uploads/2019/02/8-11-1024x576.png 1024w, https://www.osradar.com/wp-content/uploads/2019/02/8-11-696x391.png 696w, https://www.osradar.com/wp-content/uploads/2019/02/8-11-1068x600.png 1068w, https://www.osradar.com/wp-content/uploads/2019/02/8-11-747x420.png 747w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-10941" class="wp-caption-text">8.- Using mysql_secure_installation</figcaption></figure></p>
<p>You can answer the questions that come up as you like. However, I recommend that you read them properly to establish the best configuration for your server. In this case, I will respond as follows: Y, N, Y, Y.</p>
<h2>3. Install PhpMyAdmin</h2>
<p>At the time of writing this post, the latest stable version of PhpMyAdmin is 4.8.5 the easiest way to install it is through the REMI repository.</p>
<p>So, install it.</p>
<pre>:~# yum --enablerepo=remi install phpmyadmin</pre>
<p><figure id="attachment_10943" aria-describedby="caption-attachment-10943" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-10943" src="https://www.osradar.com/wp-content/uploads/2019/02/9-32.png" alt="9.- Install the latest PhpMyAdmin" width="1366" height="768" srcset="https://www.osradar.com/wp-content/uploads/2019/02/9-32.png 1366w, https://www.osradar.com/wp-content/uploads/2019/02/9-32-300x169.png 300w, https://www.osradar.com/wp-content/uploads/2019/02/9-32-768x432.png 768w, https://www.osradar.com/wp-content/uploads/2019/02/9-32-1024x576.png 1024w, https://www.osradar.com/wp-content/uploads/2019/02/9-32-696x391.png 696w, https://www.osradar.com/wp-content/uploads/2019/02/9-32-1068x600.png 1068w, https://www.osradar.com/wp-content/uploads/2019/02/9-32-747x420.png 747w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-10943" class="wp-caption-text">9.- Install the latest PhpMyAdmin</figcaption></figure></p>
<p>After that, open the PhpMyAdmin configuration file for apache to allow the connections to it.</p>
<pre>:~# nano /etc/httpd/conf.d/phpMyAdmin.conf</pre>
<p>In the IfModule mod_authz_core.c section, add</p>
<pre>Require all granted.</pre>
<p>&nbsp;</p>
<p><figure id="attachment_10944" aria-describedby="caption-attachment-10944" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-10944" src="https://www.osradar.com/wp-content/uploads/2019/02/10-10.png" alt="10.- Edit the phpmyadmin configuration file for apache" width="1366" height="768" srcset="https://www.osradar.com/wp-content/uploads/2019/02/10-10.png 1366w, https://www.osradar.com/wp-content/uploads/2019/02/10-10-300x169.png 300w, https://www.osradar.com/wp-content/uploads/2019/02/10-10-768x432.png 768w, https://www.osradar.com/wp-content/uploads/2019/02/10-10-1024x576.png 1024w, https://www.osradar.com/wp-content/uploads/2019/02/10-10-696x391.png 696w, https://www.osradar.com/wp-content/uploads/2019/02/10-10-1068x600.png 1068w, https://www.osradar.com/wp-content/uploads/2019/02/10-10-747x420.png 747w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-10944" class="wp-caption-text">10.- Edit the phpmyadmin configuration file for apache</figcaption></figure></p>
<p>Next, restart Apache.</p>
<pre>:~#  systemctl restart httpd</pre>
<p>After that, open your web browser and go to<code> http://SERVER_IP/phpmyadmin</code></p>
<p><figure id="attachment_10945" aria-describedby="caption-attachment-10945" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-10945" src="https://www.osradar.com/wp-content/uploads/2019/02/11-7.png" alt="11.- PHPMyAdmin" width="1366" height="666" srcset="https://www.osradar.com/wp-content/uploads/2019/02/11-7.png 1366w, https://www.osradar.com/wp-content/uploads/2019/02/11-7-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/02/11-7-768x374.png 768w, https://www.osradar.com/wp-content/uploads/2019/02/11-7-1024x499.png 1024w, https://www.osradar.com/wp-content/uploads/2019/02/11-7-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2019/02/11-7-696x339.png 696w, https://www.osradar.com/wp-content/uploads/2019/02/11-7-1068x521.png 1068w, https://www.osradar.com/wp-content/uploads/2019/02/11-7-861x420.png 861w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-10945" class="wp-caption-text">11.- PHPMyAdmin</figcaption></figure></p>
<p>Log in with your user and enjoy!</p>
<p><figure id="attachment_10946" aria-describedby="caption-attachment-10946" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-10946" src="https://www.osradar.com/wp-content/uploads/2019/02/12-6.png" alt="12.- PhpMyAdmin start screen" width="1366" height="666" srcset="https://www.osradar.com/wp-content/uploads/2019/02/12-6.png 1366w, https://www.osradar.com/wp-content/uploads/2019/02/12-6-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/02/12-6-768x374.png 768w, https://www.osradar.com/wp-content/uploads/2019/02/12-6-1024x499.png 1024w, https://www.osradar.com/wp-content/uploads/2019/02/12-6-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2019/02/12-6-696x339.png 696w, https://www.osradar.com/wp-content/uploads/2019/02/12-6-1068x521.png 1068w, https://www.osradar.com/wp-content/uploads/2019/02/12-6-861x420.png 861w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-10946" class="wp-caption-text">12.- PhpMyAdmin start screen</figcaption></figure></p>
<p>That&#8217;s it.</p>
<h2>Conclusion</h2>
<p>PhpMyAdmin is a very useful tool to manage MySQL data in a very simple way. It is free, open source and perfectly compatible with your web servers.</p>
<p>Please share this article in your social networks.</p>
<p>&nbsp;</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-install-the-latest-phpmyadmin-on-centos-7/">How to install the latest PhpMyAdmin on CentOS 7?</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.osradar.com/how-to-install-the-latest-phpmyadmin-on-centos-7/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
	</channel>
</rss>
