<?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>mysql Archives - Linux Windows and android Tutorials</title>
	<atom:link href="https://www.osradar.com/tag/mysql/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.osradar.com</link>
	<description>tutorials and news and Seurity</description>
	<lastBuildDate>Mon, 06 Sep 2021 16:02:36 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.8.12</generator>
	<item>
		<title>How to install PHPMyAdmin on Debian 11</title>
		<link>https://www.osradar.com/install-phpmyadmin-debian/</link>
					<comments>https://www.osradar.com/install-phpmyadmin-debian/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Tue, 14 Sep 2021 04:01:00 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[bullseye]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[SQL]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=32138</guid>

					<description><![CDATA[<p>Hello, friends. In this post, we will help you to install the latest stable version of PHPMyAdmin on Debian 11. If there is a tool that has helped in the management of MySQL / MariaDB data is PHPMyAdmin both professionals and students or even enthusiasts. So, what is PHPMyAdmin? According to the project website, phpMyAdmin [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-phpmyadmin-debian/">How to install PHPMyAdmin on Debian 11</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p class="has-line-data">Hello, friends. In this post, we will help you to install the latest stable version of PHPMyAdmin on Debian 11.</p>



<p class="has-line-data">If there is a tool that has helped in the management of MySQL / MariaDB data is PHPMyAdmin both professionals and students or even enthusiasts.</p>



<p class="has-line-data">So, what is PHPMyAdmin?</p>



<p class="has-line-data">According to the <a href="https://www.phpmyadmin.net/" target="_blank" rel="noreferrer noopener">project website</a>,</p>



<blockquote class="wp-block-quote"><p class="has-line-data" data-line-start="8" data-line-end="9">phpMyAdmin is a free software tool written in PHP, intended to handle the administration of MySQL over the Web. phpMyAdmin supports a wide range of operations on MySQL and MariaDB. Frequently used operations (managing databases, tables, columns, columns, relations, indexes, users, permissions, etc) can be performed via the user interface, while you still can directly execute any SQL statement.</p></blockquote>



<p class="has-line-data">Therefore, with PHPMyAdmin we can quickly query our data and other options quickly and easily. In addition to this, we are talking about an open-source project with which we can examine its source code and even modify it.</p>



<p class="has-line-data">Another advantage of using PHPMyAdmin is that as it is a project created with PHP, the only thing we need is an operating system with a web server installed. From there, we can then access it with a web device such as a computer, tablet, or mobile phone.</p>



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



<h2 class="code-line"><a id="Install_PHPMyAdmin_on_Debian_11_16"></a>Install PHPMyAdmin on Debian 11</h2>



<p class="has-line-data">By default, it is included in the official Debian 11 repositories. So installing it is very easy to do. The problem is that the versions included in the repositories are not always the most up-to-date.</p>



<p class="has-line-data">So in this post, we’ll go through the whole process to get the latest stable version published on the PHPMyAdmin website.</p>



<h3 class="code-line"><a id="Install_LAMP_on_Debian_11_22"></a>Install LAMP on Debian 11</h3>



<p class="has-line-data">Since this is a web application, then it is necessary to have our computer working as a web server. So, we need to install LAMP on Debian 11</p>



<p class="has-line-data">For that, you have to install first<a href="https://www.osradar.com/install-apache-web-server-php-debian-linux/" target="_blank" rel="noreferrer noopener"> Apache on Debian 11</a> and then <a href="https://www.osradar.com/install-mariadb-database-debian/" target="_blank" rel="noreferrer noopener">MariaDB on Debian 11</a>. With our posts, you will have no problem doing that.</p>



<p class="has-line-data">Also, it is necessary to install some PHP modules such as</p>



<pre class="wp-block-preformatted">php libapache2-mod-php php-mysql php-mysql php-mbstring php-xml php-zip</pre>



<p class="has-line-data">Once we have LAMP fully installed, we can continue.</p>



<h3 class="code-line"><a id="Downloading_and_installing_the_latest_version_of_PHPMyAdmin_34"></a>Downloading and installing the latest version of PHPMyAdmin</h3>



<p class="has-line-data">At the time of writing this post, the latest stable version of PHPMyAdmin is <code>5.1.1</code> in the future this will change. So to keep it working, in the commands replace <code>5.1.1</code> with the updated version number.</p>



<p class="has-line-data">Now, from the <code>/tmp/</code> folder download PHPMyAdmin with the command <code>wget</code>.</p>



<pre class="wp-block-preformatted">cd /tmp/
wget https://files.phpmyadmin.net/phpMyAdmin/5.1.1/phpMyAdmin-5.1.1-all-languages.tar.gz</pre>



<p class="has-line-data">Then unzip it and move it to another location. In this case, I will move it to <code>/usr/share/phpmyadmin</code>.</p>



<pre class="wp-block-preformatted">sudo mv phpMyAdmin-5.1.1-all-languages /usr/share/phpmyadmin</pre>



<p class="has-line-data">Now create a <code>tmp</code> folder dedicated to PHPMyAdmin. Then make Apache the owner of it.</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 class="has-line-data">Also, create a folder dedicated to the configuration:</p>



<pre class="wp-block-preformatted">sudo mkdir /etc/phpmyadmin/</pre>



<p class="has-line-data">Enable the PHPMyAdmin configuration by copying the sample with the configuration name that the program will recognize.</p>



<pre class="wp-block-preformatted">sudo cp /usr/share/phpmyadmin/config.sample.inc.php /usr/share/phpmyadmin/config.inc.php</pre>



<p class="has-line-data">This file needs to be edited to make two modifications.</p>



<pre class="wp-block-preformatted">sudo nano /usr/share/phpmyadmin/config.inc.php</pre>



<p class="has-line-data">The first is to define a passphrase that will help us to increase security.</p>



<pre class="wp-block-preformatted">$cfg['blowfish_secret'] = '[passphrase]'; </pre>



<p class="has-line-data">The second is to set the path to the temporary folder we created for PHPMyAdmin. You can add this line.</p>



<pre class="wp-block-preformatted">$cfg['TempDir'] = '/var/lib/phpmyadmin/tmp';</pre>



<p class="has-line-data">Save your changes and close the editor.</p>



<p class="has-line-data">Now you need to add a recommended Apache configuration for ideal access to PHPMyAdmin.</p>



<p class="has-line-data">So, Create the file</p>



<pre class="wp-block-preformatted">sudo nano /etc/apache2/conf-enabled/phpmyadmin.conf</pre>



<p class="has-line-data">And add the following:</p>



<pre class="wp-block-preformatted">Alias /phpmyadmin /usr/share/phpmyadmin
ServerName your-domain

&lt;Directory /usr/share/phpmyadmin>
    Options SymLinksIfOwnerMatch
    DirectoryIndex index.php

    &lt;IfModule mod_php5.c>
        &lt;IfModule mod_mime.c>
            AddType application/x-httpd-php .php
        &lt;/IfModule>
        &lt;FilesMatch ".+\.php$">
            SetHandler application/x-httpd-php
        &lt;/FilesMatch>

        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>
    &lt;IfModule mod_php.c>
        &lt;IfModule mod_mime.c>
            AddType application/x-httpd-php .php
        &lt;/IfModule>
        &lt;FilesMatch ".+\.php$">
            SetHandler application/x-httpd-php
        &lt;/FilesMatch>

        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>

&lt;/Directory>

&lt;Directory /usr/share/phpmyadmin/setup>
    &lt;IfModule mod_authz_core.c>
        &lt;IfModule mod_authn_file.c>
            AuthType Basic
            AuthName "phpMyAdmin Setup"
            AuthUserFile /etc/phpmyadmin/htpasswd.setup
        &lt;/IfModule>
        Require valid-user
    &lt;/IfModule>
&lt;/Directory></pre>



<p class="has-line-data">Save the changes and close the editor.</p>



<p class="has-line-data">Now enable the <code>rewrite</code> module and check the service status for an error.</p>



<pre class="wp-block-preformatted">sudo a2enmod rewrite
sudo systemctl restart apache2
sudo systemctl status apache2</pre>



<p class="has-line-data">Optionally, but recommended, you can secure access to PHPMyAdmin by installing Let’s Encrypt certificates.</p>



<p class="has-line-data">So, install Certbot and the Apache plugin.</p>



<pre class="wp-block-preformatted">sudo apt install certbot python3-certbot-apache</pre>



<p class="has-line-data">And generate the certificates as follows</p>



<pre class="wp-block-preformatted">sudo certbot --apache -d [your-domain]</pre>



<p class="has-line-data">Then, follow the interactive instructions of the tool. There you will have to define your email address and the installation will be done.</p>



<p class="has-line-data">Then, restart Apache.</p>



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



<p class="has-line-data">Now you can access using your favorite web browser at <code>https://your-server/phpmyadmin/</code> and you will see the login screen.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="511" src="https://www.osradar.com/wp-content/uploads/2021/09/1-3-1024x511.png" alt="1.- PHPMyAdmin on Debian 11" class="wp-image-32143" srcset="https://www.osradar.com/wp-content/uploads/2021/09/1-3-1024x511.png 1024w, https://www.osradar.com/wp-content/uploads/2021/09/1-3-300x150.png 300w, https://www.osradar.com/wp-content/uploads/2021/09/1-3-768x383.png 768w, https://www.osradar.com/wp-content/uploads/2021/09/1-3-696x347.png 696w, https://www.osradar.com/wp-content/uploads/2021/09/1-3-1068x533.png 1068w, https://www.osradar.com/wp-content/uploads/2021/09/1-3.png 1366w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>1.- PHPMyAdmin on Debian 11</figcaption></figure>



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



<h2>Conclusion</h2>



<p class="has-line-data">PHPMyAdmin is a sophisticated tool that allows us to manage a MariaDB instance without much trouble. It can be useful to save a lot of time in viewing the data and the many options we have to work with.</p>



<p class="has-line-data">With this post, you learned how to install the latest stable version without major problems having LAMP as a base.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-phpmyadmin-debian/">How to install PHPMyAdmin on Debian 11</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/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to install MariaDB 10.6 on Ubuntu 20.04 / Ubuntu 18.04?</title>
		<link>https://www.osradar.com/install-mariadb-10-6-ubuntu-20-04-18-04/</link>
					<comments>https://www.osradar.com/install-mariadb-10-6-ubuntu-20-04-18-04/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Wed, 11 Aug 2021 23:11:00 +0000</pubDate>
				<category><![CDATA[Databases]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[SQL]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=22881</guid>

					<description><![CDATA[<p>Debian and Ubuntu are some of the most stable Linux distributions out there. This is because the packages that are part of the official repositories are frozen and tested many times by many people. However, this brings a consequence: that we will not be able to have the most recent versions of the programs. An [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-mariadb-10-6-ubuntu-20-04-18-04/">How to install MariaDB 10.6 on Ubuntu 20.04 / 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>Debian and Ubuntu are some of the most stable Linux distributions out there. This is because the packages that are part of the official repositories are frozen and tested many times by many people. However, this brings a consequence: that we will not be able to have the most recent versions of the programs. An example of this is MariaDB which is a vital program for many people. <strong>So, today I will show you how to install MariaDB 10.6 on Ubuntu 20.4 / 18.04.</strong></p>



<p><a href="https://www.osradar.com/tag/mariadb/" target="_blank" rel="noreferrer noopener">MariaDB</a> is a well-known archi Database Relationships Management System that is a <a href="https://www.osradar.com/tag/mysql/" target="_blank" rel="noreferrer noopener">MySQL</a> fork. This is due to the purchase of Sun Mycrosystem by Oracle. It is perfectly compatible with MySQL and is available in most Linux distributions.</p>



<p>In Ubuntu 20.04 and 18.04 LTS the version of MariaDB that is available in the official repositories is 10.3 and 10.1 respectively but recently has seen the release of version 10.5 with some interesting new features. </p>



<p>So, if you want to take advantage of having a recent version of this database manager, then welcome.</p>



<h2>Install MariaDB 10.6 on Ubuntu 20.04 / 18.04</h2>



<p>Open a terminal and install some necessary packages:</p>



<pre class="wp-block-preformatted">sudo apt-get install software-properties-common
Reading package lists… Done
Building dependency tree
Reading state information… Done
The following additional packages will be installed:
python3-software-properties
Recommended packages:
unattended-upgrades
The following packages will be upgraded:
python3-software-properties software-properties-common
2 upgraded, 0 newly installed, 0 to remove and 87 not upgraded.
Need to get 35.8 kB of archives.
After this operation, 0 B of additional disk space will be used.
Do you want to continue? [Y/n]</pre>



<p>Once they&#8217;re ready we need to add the special MariaDB repository. This adds a lot of ease and security to the process because we won&#8217;t be using third-party repositories.</p>



<p>First, add the GPG key:</p>



<pre class="wp-block-preformatted">sudo apt-key adv --fetch-keys 'https://mariadb.org/mariadb_release_signing_key.asc'
Executing: /tmp/apt-key-gpghome.T8R2f9j18N/gpg.1.sh --fetch-keys https://mariadb.org/mariadb_release_signing_key.asc
gpg: requesting key from 'https://mariadb.org/mariadb_release_signing_key.asc'
gpg: key F1656F24C74CD1D8: public key "MariaDB Signing Key <a href="mailto:signing-key@mariadb.org">signing-key@mariadb.org</a>" imported
gpg: Total number processed: 1
gpg: imported: 1</pre>



<p>Now add the repository as such for Ubuntu 20.04</p>



<pre class="wp-block-preformatted">sudo add-apt-repository 'deb [arch=amd64,arm64,ppc64el] http://nyc2.mirrors.digitalocean.com/mariadb/repo/10.6/ubuntu focal main'</pre>



<p>Or Ubuntu 18.04:</p>



<pre class="wp-block-preformatted">
sudo add-apt-repository 'deb [arch=amd64,arm64,ppc64el] http://nyc2.mirrors.digitalocean.com/mariadb/repo/10.6/ubuntu bionic main'

<strong>Note: you can choose another mirror closer to you on the MariaDB website.</strong>
Once the new repository is added to the system repository list, you can refresh APT.</pre>



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



<p>And finally, install MariaDB 10.6 with the following command:</p>



<pre class="wp-block-preformatted">sudo apt install mariadb-server
Then you can check the installed version:</pre>



<pre class="wp-block-preformatted">mysql --version
mysql  Ver 15.1 Distrib 10.6.3-MariaDB, for debian-linux-gnu (x86_64) using readline 5.2</pre>



<p>With the installation of MariaDB a root password is not defined, so to define it use the mysql_secure_installation script</p>



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



<p>Define the root password and then answer yes to all the questions asked.</p>



<pre class="wp-block-preformatted">Remove anonymous users? [Y/n]
Disallow root login remotely? [Y/n] 
Remove test database and access to it? [Y/n] 
Reload privilege tables now? [Y/n]</pre>



<p>Now we are ready. MariaDB 10.6 is installed correctly.</p>



<h2>Conclusion</h2>



<p>MariaDB 10.6 is a good improvement over previous versions. But it is not always available in the official repositories of other Linux distributions. Today you have learned how to install it in Ubuntu 20.04 / 18.04.</p>



<p>So, share this post and join <a href="https://t.me/osradar" target="_blank" rel="noreferrer noopener">our Telegram Channel</a>.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-mariadb-10-6-ubuntu-20-04-18-04/">How to install MariaDB 10.6 on Ubuntu 20.04 / 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/install-mariadb-10-6-ubuntu-20-04-18-04/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>DbGate: The Smartest (no)SQL Database Client</title>
		<link>https://www.osradar.com/dbgate-database-client/</link>
					<comments>https://www.osradar.com/dbgate-database-client/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Sun, 23 May 2021 23:07:00 +0000</pubDate>
				<category><![CDATA[Databases]]></category>
		<category><![CDATA[Desktop]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[desktop]]></category>
		<category><![CDATA[mariadb]]></category>
		<category><![CDATA[mongodb]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[SQL]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=30187</guid>

					<description><![CDATA[<p>Hello, friends. We already know that developers or people who are in charge of a database, require professional clients to facilitate their task. So, in this post, we will introduce you to DbGate which is another client that supports many database managers. DbGate is a modern database management client that works with both SQL drivers [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/dbgate-database-client/">DbGate: The Smartest (no)SQL Database Client</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>Hello, friends. We already know that developers or people who are in charge of a database, require professional clients to facilitate their task. So, in this post, we will introduce you to DbGate which is another client that supports many database managers.</p>



<p><a href="https://dbgate.org">DbGate</a> is a modern database management client that works with both SQL drivers such as MariaDB, MySQL; and with NoSQL such as MongoDB.</p>



<p>We are talking about a Free and open-source application that has been released under the MIT license. This makes that you can use it in many projects of diverse nature.</p>



<p>Another aspect to take into account with DbGate is that it is cross-platform. This means that we can use it on Windows, macOS, and of course Linux. Quite useful to improve possible migrations between operating systems. If you come from Windows, you can also use this application.</p>



<p>With DbGate you can easily:</p>



<ul><li>Connect to multiple databases, directly or through SSH tunnel. Important in terms of security.</li><li>Browse or edit data in your tables or views, filter by column value. This using a data editor.</li><li>Edit SQL queries with auto-complete suggestions or use query designer.</li><li>Export and import from/to CSV, JSON, or Excel.</li><li>Connect to <a href="https://www.osradar.com/how-to-install-mongodb-on-ubuntu-20-04/" target="_blank" rel="noreferrer noopener">MongoDB</a>, browse or filter JSON document data.</li></ul>



<p>In addition to this, you can further extend the functionality of the program by adding plugins.</p>



<h2 id="install-dbgate-on-linux"><a href="#install-dbgate-on-linux" name="install-dbgate-on-linux"></a>Install DbGate on Linux</h2>



<p>In the Linux chaos, we have several options depending on the system you are using. In the case of Debian, Ubuntu and derivatives there is a <code>DEB</code> package that can be downloaded <a href="https://github.com/dbgate/dbgate" target="_blank" rel="noreferrer noopener">from Github</a> or using the terminal.</p>



<pre class="wp-block-preformatted">wget -c https://github.com/dbgate/dbgate/releases/download/v4.2.0/dbgate-latest.deb</pre>



<p>And then install it, <a href="https://www.osradar.com/apt-the-ubuntu-package-manager/" target="_blank" rel="noreferrer noopener">using APT</a>.</p>



<pre class="wp-block-preformatted">sudo apt install ./dbgate-latest.deb</pre>



<p>Then you can run it from the main menu.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="607" src="https://www.osradar.com/wp-content/uploads/2021/05/1-6-1024x607.png" alt="1.- DbGate running" class="wp-image-30188" srcset="https://www.osradar.com/wp-content/uploads/2021/05/1-6-1024x607.png 1024w, https://www.osradar.com/wp-content/uploads/2021/05/1-6-300x178.png 300w, https://www.osradar.com/wp-content/uploads/2021/05/1-6-768x455.png 768w, https://www.osradar.com/wp-content/uploads/2021/05/1-6-696x412.png 696w, https://www.osradar.com/wp-content/uploads/2021/05/1-6-1068x633.png 1068w, https://www.osradar.com/wp-content/uploads/2021/05/1-6.png 1372w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>1.- DbGate running</figcaption></figure>



<p>There are also other formats like APPImage that you can run from any other Linux distribution or use the binaries.</p>



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



<p>Having professional tools for database management is a serious matter that requires some preliminary research. At the moment, DbGate has all the basic features to make it a solid alternative to others on the market. Being OpenSource and including Linux support, it generates more exceptions and is an option to take into account.</p>



<p>Enjoy it!</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/dbgate-database-client/">DbGate: The Smartest (no)SQL Database Client</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/dbgate-database-client/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to install MariaDB 10.5 on Debian 10?</title>
		<link>https://www.osradar.com/install-mariadb-10-5-debian-10/</link>
					<comments>https://www.osradar.com/install-mariadb-10-5-debian-10/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Sat, 09 Jan 2021 00:52:00 +0000</pubDate>
				<category><![CDATA[Databases]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Buster]]></category>
		<category><![CDATA[mariadb]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[SQL]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=27407</guid>

					<description><![CDATA[<p>Debian is the most stable Linux distributions out there. This is because the packages that are part of the official repositories are frozen and tested many times by many people. However, this brings a consequence: that we will not be able to have the most recent versions of the programs. An example of this is [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-mariadb-10-5-debian-10/">How to install MariaDB 10.5 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>Debian is the most stable Linux distributions out there. This is because the packages that are part of the official repositories are frozen and tested many times by many people. However, this brings a consequence: that we will not be able to have the most recent versions of the programs. An example of this is MariaDB which is a vital program for many people. <strong>So, today I will show you how to install MariaDB 10.5 on Debian 10.</strong></p>



<p><a href="https://www.osradar.com/tag/mariadb/" target="_blank" rel="noreferrer noopener">MariaDB</a>&nbsp;is a well-known archi Database Relationships Management System that is a&nbsp;<a href="https://www.osradar.com/tag/mysql/" target="_blank" rel="noreferrer noopener">MySQL</a>&nbsp;fork. This is due to the purchase of Sun Mycrosystem by Oracle. It is perfectly compatible with MySQL and is available in most Linux distributions.</p>



<p>In Debian 10 the version of MariaDB that is available in the official repositories is 10.3 but recently has seen the release of version 10.5 with some interesting new features.</p>



<p>So, if you want to take advantage of having a recent version of this database manager, then welcome.</p>



<h2>Install MariaDB 10.5 on Debian 10</h2>



<p>For recent versions of MariaDB on Debian 10, we can use the <a href="https://downloads.mariadb.org/mariadb/repositories/" target="_blank" rel="noreferrer noopener">repository provided by the developers.</a></p>



<p>These repositories have many mirrors around the world, I will use one that is in New York that should work well anywhere.</p>



<p>So, open a terminal and install the necessary packages to add the repository.</p>



<pre class="wp-block-preformatted">sudo apt-get install software-properties-common dirmngr</pre>



<p>After you have done this, add the GPG key to it</p>



<pre class="wp-block-preformatted">sudo apt-key adv --fetch-keys 'https://mariadb.org/mariadb_release_signing_key.asc'
Executing: /tmp/apt-key-gpghome.WyUWC7PYTX/gpg.1.sh --fetch-keys https://mariadb.org/mariadb_release_signing_key.asc
 gpg: requesting key from 'https://mariadb.org/mariadb_release_signing_key.asc'
 gpg: key F1656F24C74CD1D8: public key "MariaDB Signing Key <a href="mailto:signing-key@mariadb.org">signing-key@mariadb.org</a>" imported
 gpg: Total number processed: 1
 gpg:               imported: 1</pre>



<p>Now yes, add the repository in question.</p>



<pre class="wp-block-preformatted">sudo add-apt-repository 'deb [arch=amd64,arm64,ppc64el] http://nyc2.mirrors.digitalocean.com/mariadb/repo/10.5/debian buster main'</pre>



<p>And refreshes <a href="https://www.osradar.com/apt-the-ubuntu-package-manager/" target="_blank" rel="noreferrer noopener">APT</a></p>



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



<p>And finally, it carries out the installation</p>



<pre class="wp-block-preformatted">sudo apt install mariadb-server
Reading package lists… Done
 Building dependency tree       
 Reading state information… Done
 The following additional packages will be installed:
   galera-4 gawk libdbi-perl libgdbm-compat4 libmariadb3 libmpfr6 libperl5.28 libsigsegv2 mariadb-client-10.5 mariadb-client-core-10.5 mariadb-common
   mariadb-server-10.5 mariadb-server-core-10.5 mysql-common perl psmisc socat
 Suggested packages:
   gawk-doc libclone-perl libmldbm-perl libnet-daemon-perl libsql-statement-perl mailx mariadb-test netcat-openbsd perl-doc libterm-readline-gnu-perl
   | libterm-readline-perl-perl make libb-debug-perl liblocale-codes-perl
 Recommended packages:
   libdbd-mariadb-perl | libdbd-mysql-perl libterm-readkey-perl libhtml-template-perl
 The following NEW packages will be installed:
   galera-4 gawk libdbi-perl libgdbm-compat4 libmariadb3 libmpfr6 libperl5.28 libsigsegv2 mariadb-client-10.5 mariadb-client-core-10.5 mariadb-common mariadb-server
   mariadb-server-10.5 mariadb-server-core-10.5 mysql-common perl psmisc socat
 0 upgraded, 18 newly installed, 0 to remove and 12 not upgraded.
 Need to get 32.9 MB of archives.
 After this operation, 248 MB of additional disk space will be used.
 Do you want to continue? [Y/n]</pre>



<p>After the installation is complete, check the installed version:</p>



<pre class="wp-block-preformatted">mysql --version
mysql  Ver 15.1 Distrib 10.5.8-MariaDB, for debian-linux-gnu (x86_64) using readline 5.2</pre>



<p>And remember that you have to configure MariaDB before putting it into production.</p>



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



<pre class="wp-block-preformatted">Remove anonymous users? [Y/n]<br>Disallow root login remotely? [Y/n]<br>Remove test database and access to it? [Y/n]<br>Reload privilege tables now? [Y/n]</pre>



<p>And now it will be ready.</p>



<h2>Conclusion</h2>



<p>MariaDB 10.5 is a good improvement over previous versions. But it is not always available in the official repositories of other Linux distributions. Today you have learned how to install it in Debian 10.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-mariadb-10-5-debian-10/">How to install MariaDB 10.5 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-mariadb-10-5-debian-10/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to install Drupal in Windows 10</title>
		<link>https://www.osradar.com/how-to-install-drupal-in-windows-10/</link>
					<comments>https://www.osradar.com/how-to-install-drupal-in-windows-10/#respond</comments>
		
		<dc:creator><![CDATA[roger]]></dc:creator>
		<pubDate>Thu, 07 Jan 2021 22:56:00 +0000</pubDate>
				<category><![CDATA[Servers]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[cms]]></category>
		<category><![CDATA[drupal]]></category>
		<category><![CDATA[drupal for windows 10]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[PHP]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=27225</guid>

					<description><![CDATA[<p>Hi! Today we will talk a little bit about Drupal. This is a content management system based on PHP and MySQL or PostgreSQL. In addition, it allows the administration of users, documents, discussions or news. This framework is free, multipurpose and modular. Additionally, Drupal stands out for being highly configurable and easy to use by [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-install-drupal-in-windows-10/">How to install Drupal in 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>Hi! Today we will talk a little bit about Drupal. This is a content management system based on PHP and MySQL or PostgreSQL. In addition, it allows the administration of users, documents, discussions or news. This framework is free, multipurpose and modular. Additionally, Drupal stands out for being highly configurable and easy to use by users. Even without much computer knowledge. Well, today we will see how to install Drupal in Windows 10.</p>



<h2>Prerequisites</h2>



<ul><li>A web server such as <a href="https://www.osradar.com/how-to-install-apache-on-windows-10/" target="_blank" rel="noreferrer noopener">Apache</a>, <a href="https://www.osradar.com/how-to-install-nginx-server-on-windows-10/" target="_blank" rel="noreferrer noopener">Nginx</a> or <a href="https://www.osradar.com/how-to-enable-internet-information-services-in-windows-10/" target="_blank" rel="noreferrer noopener">Microsoft IIS</a></li><li>Any of the following databases: <a href="https://www.osradar.com/how-to-install-mysql-in-windows-10/" target="_blank" rel="noreferrer noopener">MySQL</a> &#8211; 5.5.3 (<a href="https://www.osradar.com/how-to-install-mariadb-on-windows-server-2019/" target="_blank" rel="noreferrer noopener">MariaDB</a> 5.5.20, Percona 5.5.8) or higher with an InnoDB-compatible primary storage engine. <a href="https://www.osradar.com/how-to-install-postgresql-on-windows-10/" target="_blank" rel="noreferrer noopener">PostgreSQL</a> &#8211; 9.1.2 or higher. SQLite &#8211; 3.4.2 or higher</li></ul>



<p>However, all these requirements can be met by using a program like XAMPP. See <a href="https://www.osradar.com/how-to-install-xampp-on-windows-10/" target="_blank" rel="noreferrer noopener">here</a> how to use and configure it.</p>



<h2>Downloading Drupal for Windows 10</h2>



<p>This software can be downloaded for free from <a href="https://www.drupal.org/download" target="_blank" rel="noreferrer noopener">here.</a> Please download the compressed file in .zip format. </p>



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



<h2>Creating the new database.</h2>



<p>Now it is necessary to create the new database. Indeed, this is essential to be able to use Drupal. Consequently, it opens the XAMMP control center. Once there, please click on the MySQL Configure button.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="668" height="433" src="//1081754738.rsc.cdn77.org/wp-content/uploads/2020/12/dp11-1.png" alt="Opening the MySQL control center." class="wp-image-27228" srcset="https://www.osradar.com/wp-content/uploads/2020/12/dp11-1.png 668w, https://www.osradar.com/wp-content/uploads/2020/12/dp11-1-300x194.png 300w" sizes="(max-width: 668px) 100vw, 668px" /><figcaption><em>Opening the MySQL control center.</em></figcaption></figure>



<p>Immediately the database manager will be deployed. Please click on New. Then assign the name you want and finally click on <strong>Create.</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/12/dp-1024x787.png" alt="Creating the database." class="wp-image-27229" srcset="https://www.osradar.com/wp-content/uploads/2020/12/dp-1024x787.png 1024w, https://www.osradar.com/wp-content/uploads/2020/12/dp-300x231.png 300w, https://www.osradar.com/wp-content/uploads/2020/12/dp-768x590.png 768w, https://www.osradar.com/wp-content/uploads/2020/12/dp-696x535.png 696w, https://www.osradar.com/wp-content/uploads/2020/12/dp-1068x821.png 1068w, https://www.osradar.com/wp-content/uploads/2020/12/dp.png 1280w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>Creating the database.</figcaption></figure>



<h2>Decompressing the downloaded file.</h2>



<p>Back to the previously downloaded file, it&#8217;s time to do two steps. First decompress it and assign a simpler name to the folder. In my case <em>Drupal</em>. Then move it to the next location:</p>



<pre class="wp-block-preformatted">C:\xampp\htdocs</pre>



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



<h2>Starting the Drupal installation in Windows 10</h2>



<p>Once these previous steps are done, it is time to start the installation of Drupal. With this in mind, open the following address in your web browser.</p>



<pre class="wp-block-preformatted"><strong>http://localhost/Drupal</strong> </pre>



<p>Please note that this address may vary depending on the name of the assigned folder. The installer will be immediately deployed. First set the preferred language.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="787" src="//1081754738.rsc.cdn77.org/wp-content/uploads/2020/12/dp3-1024x787.jpg" alt="Set the language for Drupal" class="wp-image-27233" srcset="https://www.osradar.com/wp-content/uploads/2020/12/dp3-1024x787.jpg 1024w, https://www.osradar.com/wp-content/uploads/2020/12/dp3-300x231.jpg 300w, https://www.osradar.com/wp-content/uploads/2020/12/dp3-768x590.jpg 768w, https://www.osradar.com/wp-content/uploads/2020/12/dp3-696x535.jpg 696w, https://www.osradar.com/wp-content/uploads/2020/12/dp3-1068x821.jpg 1068w, https://www.osradar.com/wp-content/uploads/2020/12/dp3.jpg 1280w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>Set the language for Drupal</figcaption></figure>



<p>Then, the wizard offers the installation mode. Standard, minimum or a sample Demo. For the purposes of this tutorial, I selected the Standard installation</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="787" src="//1081754738.rsc.cdn77.org/wp-content/uploads/2020/12/dp4-1024x787.jpg" alt="Selecting the type of installation." class="wp-image-27234" srcset="https://www.osradar.com/wp-content/uploads/2020/12/dp4-1024x787.jpg 1024w, https://www.osradar.com/wp-content/uploads/2020/12/dp4-300x231.jpg 300w, https://www.osradar.com/wp-content/uploads/2020/12/dp4-768x590.jpg 768w, https://www.osradar.com/wp-content/uploads/2020/12/dp4-696x535.jpg 696w, https://www.osradar.com/wp-content/uploads/2020/12/dp4-1068x821.jpg 1068w, https://www.osradar.com/wp-content/uploads/2020/12/dp4.jpg 1280w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>Selecting the type of installation.</figcaption></figure>



<p>The assistant will then verify the requirements for running Drupal. In this case, my server needs opcache. However, this component is not essential to run the installation. Therefore, we can skip it</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="787" src="//1081754738.rsc.cdn77.org/wp-content/uploads/2020/12/dp8-1024x787.jpg" alt="Checking the requirements." class="wp-image-27235" srcset="https://www.osradar.com/wp-content/uploads/2020/12/dp8-1024x787.jpg 1024w, https://www.osradar.com/wp-content/uploads/2020/12/dp8-300x231.jpg 300w, https://www.osradar.com/wp-content/uploads/2020/12/dp8-768x590.jpg 768w, https://www.osradar.com/wp-content/uploads/2020/12/dp8-696x535.jpg 696w, https://www.osradar.com/wp-content/uploads/2020/12/dp8-1068x821.jpg 1068w, https://www.osradar.com/wp-content/uploads/2020/12/dp8.jpg 1280w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>Checking the requirements.</figcaption></figure>



<p>In the next screen, please enter the parameters of the database. Please remember to enter the name of the database you just created.</p>



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



<p>Now wait a few moments while the installation of Drupal</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="787" src="//1081754738.rsc.cdn77.org/wp-content/uploads/2020/12/dp9-1-1024x787.png" alt="" class="wp-image-27239" srcset="https://www.osradar.com/wp-content/uploads/2020/12/dp9-1-1024x787.png 1024w, https://www.osradar.com/wp-content/uploads/2020/12/dp9-1-300x231.png 300w, https://www.osradar.com/wp-content/uploads/2020/12/dp9-1-768x590.png 768w, https://www.osradar.com/wp-content/uploads/2020/12/dp9-1-696x535.png 696w, https://www.osradar.com/wp-content/uploads/2020/12/dp9-1-1068x821.png 1068w, https://www.osradar.com/wp-content/uploads/2020/12/dp9-1.png 1280w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>Assistant installing Drupal in Windows 10</figcaption></figure>



<p>Once the installation is complete, it is time to set up the website. Please set the name and email address of the website. It is also necessary to assign a username and password. This user must also be provided with an email address. In addition to the region parameters.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="787" src="//1081754738.rsc.cdn77.org/wp-content/uploads/2020/12/dp8-1-1024x787.jpg" alt="Setting up the site " class="wp-image-27240" srcset="https://www.osradar.com/wp-content/uploads/2020/12/dp8-1-1024x787.jpg 1024w, https://www.osradar.com/wp-content/uploads/2020/12/dp8-1-300x231.jpg 300w, https://www.osradar.com/wp-content/uploads/2020/12/dp8-1-768x590.jpg 768w, https://www.osradar.com/wp-content/uploads/2020/12/dp8-1-696x535.jpg 696w, https://www.osradar.com/wp-content/uploads/2020/12/dp8-1-1068x821.jpg 1068w, https://www.osradar.com/wp-content/uploads/2020/12/dp8-1.jpg 1280w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>Setting up the site</figcaption></figure>



<p>Finally the installation will be finished!</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="787" src="//1081754738.rsc.cdn77.org/wp-content/uploads/2020/12/dp9-2-1024x787.png" alt="Successful installation of Drupal in Windows 10" class="wp-image-27242" srcset="https://www.osradar.com/wp-content/uploads/2020/12/dp9-2-1024x787.png 1024w, https://www.osradar.com/wp-content/uploads/2020/12/dp9-2-300x231.png 300w, https://www.osradar.com/wp-content/uploads/2020/12/dp9-2-768x590.png 768w, https://www.osradar.com/wp-content/uploads/2020/12/dp9-2-696x535.png 696w, https://www.osradar.com/wp-content/uploads/2020/12/dp9-2-1068x821.png 1068w, https://www.osradar.com/wp-content/uploads/2020/12/dp9-2.png 1280w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>Successful installation of Drupal in Windows 10</figcaption></figure>



<p>From now on, you just have to start the server and paste the following web address:</p>



<pre class="wp-block-preformatted">http://localhost/drupal </pre>



<p>This way we have seen how to install Drupal in Windows 10. So you can enjoy this powerful and friendly framework. See you soon!</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-install-drupal-in-windows-10/">How to install Drupal in 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-drupal-in-windows-10/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 list all users on MySQL / MariaDB?</title>
		<link>https://www.osradar.com/list-all-users-on-mysql-mariadb/</link>
					<comments>https://www.osradar.com/list-all-users-on-mysql-mariadb/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Wed, 09 Sep 2020 03:41:00 +0000</pubDate>
				<category><![CDATA[Databases]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[mysql]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=23284</guid>

					<description><![CDATA[<p>Hi friends, in this post you will learn how to list all the users in MySQL / MariaDB. This post can be quite useful if you are starting to use these database managers or if you work with them. A good practice when working with databases is to create specific users for each one of [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/list-all-users-on-mysql-mariadb/">How to list all users on MySQL / MariaDB?</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>Hi friends, in this post you will learn <strong>how to list all the users in MySQL / MariaDB</strong>. This post can be quite useful if you are starting to use these database managers or if you work with them.</p>



<p>A good practice when working with databases is to create specific users for each one of them. These users are given specific permissions to ensure that they can only do certain things. Of course, keep in mind that many of the database operations are performed by applications and you have to be even more careful.</p>



<p>Also, these users have certain information that should also be displayed in certain cases. Note that you are starting to work and you need to know which users are active and thus delete them or update them with specific permissions.</p>



<p>And this is where many users make mistakes because for database listing there is the <code>SHOW DATABASES;</code> command and for the tables <code>SHOW TABLES;</code> but there is no such thing as <code>SHOW TABLES</code> for users.</p>



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



<h2>List all users on MySQL / MariaDB</h2>



<p>To display the users in MySQL / MariaDB the first thing we have to do is open the terminal or connect to the server.</p>



<p>Then, access the MySQL / MariaDB console:</p>



<pre class="wp-block-preformatted">mysql -u root -p</pre>



<p>This command has to be executed as the root user or with <a href="https://www.osradar.com/how-to-enable-sudo-on-debian-10/" target="_blank" rel="noreferrer noopener">sudo</a>. Then you have to enter the password of the root user.</p>



<p>Once you are in the MySQL / MariaDB shell you can start.</p>



<p>The MySQL / MariaDB users are stored in a table called users. Inside it there is all the information about them.</p>



<p>So, to list the users, you can use this command:</p>



<pre class="wp-block-preformatted">SELECT User, Host, Password FROM mysql.user;</pre>



<p>This command will generate a screen output similar to this one:</p>



<pre class="wp-block-preformatted">+------------------+--------------+--------------+
| user             | host         | password     |
+------------------+--------------+--------------+
| root             | localhost    | 14@sasA269JHh |
| debian-test-user | localhost    | VmtRe32@Z   |
| angelo           | localhost    |              |
| wordpress            | localhost    |              |
| root             | 22.33.44.14|              |
| guest            | %            |              |
| angelo2          | 11.111.12.122  | 8aFroasXZ2@  |
+------------------+--------------+--------------+
7 rows in set (0.01 sec)
</pre>



<p>Here we can see some of the information that users have. In this case, I have limited the search to three fields and of course, the password is encrypted. If you want more information, you can select all the fields in that table:</p>



<pre class="wp-block-preformatted">SELECT * FROM mysql.user;</pre>



<p>This will provide as much information as possible but can be dangerous because the output per screen can be quite large.</p>



<p>Another alternative is to show only single users. It is possible to create the same user for several databases and on different hosts. Therefore, running the above command may bring duplicates.</p>



<p>So if for some reason you want to know only the list of users without duplicates, just run this command:</p>



<pre class="wp-block-preformatted">SELECT DISTINCT User FROM mysql.user;</pre>



<p>An example of the screen output would be the following:</p>



<pre class="wp-block-preformatted">+------------------+
| user             | 
+------------------+
| root             | 
| debian-test-user | 
| angelo           | 
| angelo2          | 
| guest            | 
| wordpress          | 
+------------------+
6 rows in set (0.01 sec)</pre>



<p>This is a cleaner and more readable way to know the users in MySQL / MariaDB</p>



<p>Finally, it is possible to obtain the current user&#8217;s information with the following command:</p>



<pre class="wp-block-preformatted">SELECT user();</pre>



<p>So now you know how to list all MySQL / MariaDB users quickly from the terminal.</p>



<h2>Conclusion</h2>



<p>Working with MySQL / MariaDB is a pretty serious matter full of situations that require a lot of information. Listing the users is something quite simple but it can be very useful and necessary. Thanks to this post you know how to do it without problems.</p>



<p>So, share this post and join <a href="https://t.me/osradar" target="_blank" rel="noreferrer noopener">our Telegram Channel</a>.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/list-all-users-on-mysql-mariadb/">How to list all users on MySQL / MariaDB?</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/list-all-users-on-mysql-mariadb/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to change MySQL / MariaDB storage engine to a WordPress site?</title>
		<link>https://www.osradar.com/change-mysql-mariadb-storage-engine-wordpress/</link>
					<comments>https://www.osradar.com/change-mysql-mariadb-storage-engine-wordpress/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Tue, 18 Aug 2020 15:13:00 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[mariadb]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[wordpress]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=22836</guid>

					<description><![CDATA[<p>Hi, folks. In this post, we will help you to change the MySQL / MariaDB storage engine to a WordPress site. Particularly we&#8217;ll change all to InnoDB but also the procedure works for MyISAM. Previously we explained that the storage engine is a fundamental component of database managers. With them, we define many ways about [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/change-mysql-mariadb-storage-engine-wordpress/">How to change MySQL / MariaDB storage engine to a WordPress site?</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>Hi, folks. In this post, <strong>we will help you to change the MySQL / MariaDB storage engine to a WordPress site</strong>. Particularly we&#8217;ll change all to InnoDB but also the procedure works for MyISAM.</p>



<p>Previously we explained that the storage engine is a fundamental component of database managers. With them, we define many ways about how our data is stored. Also, it is good to say that there are many and all are good but each in certain circumstances.</p>



<p>So, if your WordPress site needs a change of storage engine, in this post we will tell you how to do it easily and safely.</p>



<h2>Previous steps</h2>



<p>In this post, it is assumed that WordPress is already installed and running. If not, there are our posts that will help you install it without problems.</p>



<p><a href="https://www.osradar.com/how-to-install-wordpress-ubuntu-20-04/" target="_blank" rel="noreferrer noopener">How to install WordPress on Ubuntu 20.04?</a><br><a href="https://www.osradar.com/install-wordpress-debian-10/" target="_blank" rel="noreferrer noopener">How to install WordPress on Debian 10?</a><br></p>



<p>To facilitate the whole process, we have chosen to use also PHPMyAdmin as a tool. This will help us with some steps.</p>



<p><a href="https://www.osradar.com/install-phpmyadmin-on-ubuntu-20-04/" target="_blank" rel="noreferrer noopener">How to install PHPMyAdmin on Ubuntu 20.04?</a><br><a href="https://www.osradar.com/install-phpmyadmin-debian-10/" target="_blank" rel="noreferrer noopener">How to install PHPMyAdmin on Debian 10?</a><br></p>



<p>With this done, we can start.</p>



<h2>Changing MySQL / MariaDB storage engine for a WordPress site</h2>



<p>Open your web browser and open PHPMyAdmin. You will see the following screen:</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="505" src="https://www.osradar.com/wp-content/uploads/2020/08/1-12-1024x505.png" alt="1.- PHPMyAdmin main screen" class="wp-image-22837" srcset="https://www.osradar.com/wp-content/uploads/2020/08/1-12-1024x505.png 1024w, https://www.osradar.com/wp-content/uploads/2020/08/1-12-300x148.png 300w, https://www.osradar.com/wp-content/uploads/2020/08/1-12-768x379.png 768w, https://www.osradar.com/wp-content/uploads/2020/08/1-12-696x343.png 696w, https://www.osradar.com/wp-content/uploads/2020/08/1-12-1068x527.png 1068w, https://www.osradar.com/wp-content/uploads/2020/08/1-12.png 1348w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>1.- PHPMyAdmin main screen</figcaption></figure>



<p>As you can see in the image, I have a database called w<em>ordpress</em> which is where the site data is.</p>



<p>The process is quite safe but it is always convenient to make a backup of the database.</p>



<p>So, select the <em>wordpress</em> database and go to the <em>Export</em> tab and make a backup of the whole database by pressing the <em>Go</em> button.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="501" src="https://www.osradar.com/wp-content/uploads/2020/08/2-7-1024x501.png" alt="2.- Making a wordpress data backup" class="wp-image-22838" srcset="https://www.osradar.com/wp-content/uploads/2020/08/2-7-1024x501.png 1024w, https://www.osradar.com/wp-content/uploads/2020/08/2-7-300x147.png 300w, https://www.osradar.com/wp-content/uploads/2020/08/2-7-768x376.png 768w, https://www.osradar.com/wp-content/uploads/2020/08/2-7-696x340.png 696w, https://www.osradar.com/wp-content/uploads/2020/08/2-7-1068x522.png 1068w, https://www.osradar.com/wp-content/uploads/2020/08/2-7.png 1360w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>2.- Making a wordpress data backup</figcaption></figure>



<p>Perhaps the fastest method is to use SQL code. So, click on the <em>SQL</em> tab.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="501" src="https://www.osradar.com/wp-content/uploads/2020/08/3-6-1024x501.png" alt="3.- SQL tab on PHPMyAdmin" class="wp-image-22839" srcset="https://www.osradar.com/wp-content/uploads/2020/08/3-6-1024x501.png 1024w, https://www.osradar.com/wp-content/uploads/2020/08/3-6-300x147.png 300w, https://www.osradar.com/wp-content/uploads/2020/08/3-6-768x376.png 768w, https://www.osradar.com/wp-content/uploads/2020/08/3-6-696x340.png 696w, https://www.osradar.com/wp-content/uploads/2020/08/3-6-1068x522.png 1068w, https://www.osradar.com/wp-content/uploads/2020/08/3-6.png 1360w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>3.- SQL tab on PHPMyAdmin</figcaption></figure>



<p>What we have to do is modify each table that makes up the WordPress database. As I am using a recent installation of WordPress you may have many more tables.</p>



<p>So, in my case these are the lines I have to run:</p>



<pre class="wp-block-preformatted">ALTER TABLE wp_commentmeta ENGINE=InnoDB;
ALTER TABLE wp_comments ENGINE=InnoDB;
ALTER TABLE wp_links ENGINE=InnoDB;
ALTER TABLE wp_options ENGINE=InnoDB;
ALTER TABLE wp_postmeta ENGINE=InnoDB;
ALTER TABLE wp_posts ENGINE=InnoDB;
ALTER TABLE wp_termmeta ENGINE=InnoDB;
ALTER TABLE wp_terms ENGINE=InnoDB;
ALTER TABLE wp_term_relationships ENGINE=InnoDB;
ALTER TABLE wp_term_taxonomy ENGINE=InnoDB;
ALTER TABLE wp_usermeta ENGINE=InnoDB;
ALTER TABLE wp_users ENGINE=InnoDB;</pre>



<p><strong>Remember that if you want to change to MyISAM you only have to modify the commands, for example:</strong></p>



<pre class="wp-block-preformatted">ALTER TABLE wp_commentmeta ENGINE=MyISAM;</pre>



<p>Then click on the <em>Go</em> button.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="501" src="https://www.osradar.com/wp-content/uploads/2020/08/4-6-1024x501.png" alt="4.- Changing the MySQL / MariaDB storage engine for a WordPress site" class="wp-image-22840" srcset="https://www.osradar.com/wp-content/uploads/2020/08/4-6-1024x501.png 1024w, https://www.osradar.com/wp-content/uploads/2020/08/4-6-300x147.png 300w, https://www.osradar.com/wp-content/uploads/2020/08/4-6-768x376.png 768w, https://www.osradar.com/wp-content/uploads/2020/08/4-6-696x340.png 696w, https://www.osradar.com/wp-content/uploads/2020/08/4-6-1068x522.png 1068w, https://www.osradar.com/wp-content/uploads/2020/08/4-6.png 1360w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>4.- Changing the MySQL / MariaDB storage engine for a WordPress site</figcaption></figure>



<p>Then you will see a screen where you can see that each modification has been done correctly.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="505" src="https://www.osradar.com/wp-content/uploads/2020/08/5-3-1024x505.png" alt="5.- Everything is OK" class="wp-image-22841" srcset="https://www.osradar.com/wp-content/uploads/2020/08/5-3-1024x505.png 1024w, https://www.osradar.com/wp-content/uploads/2020/08/5-3-300x148.png 300w, https://www.osradar.com/wp-content/uploads/2020/08/5-3-768x379.png 768w, https://www.osradar.com/wp-content/uploads/2020/08/5-3-696x343.png 696w, https://www.osradar.com/wp-content/uploads/2020/08/5-3-1068x527.png 1068w, https://www.osradar.com/wp-content/uploads/2020/08/5-3.png 1348w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>5.- Everything is OK</figcaption></figure>



<p>And you will continue to enjoy your website without any problems.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="505" src="https://www.osradar.com/wp-content/uploads/2020/08/6-3-1024x505.png" alt="6.- WordPress site working after changing MySQL / MariaDB storage engine" class="wp-image-22842" srcset="https://www.osradar.com/wp-content/uploads/2020/08/6-3-1024x505.png 1024w, https://www.osradar.com/wp-content/uploads/2020/08/6-3-300x148.png 300w, https://www.osradar.com/wp-content/uploads/2020/08/6-3-768x379.png 768w, https://www.osradar.com/wp-content/uploads/2020/08/6-3-696x343.png 696w, https://www.osradar.com/wp-content/uploads/2020/08/6-3-1068x527.png 1068w, https://www.osradar.com/wp-content/uploads/2020/08/6-3.png 1348w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>6.- WordPress site working after changing MySQL / MariaDB storage engine</figcaption></figure>



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



<h2>Conclusion</h2>



<p>Changing the storage engine of all the tables in a WordPress site can be helpful for your site. The process is quite simple, but it is always advisable to do it after backing up our database.</p>



<p>So, share this post and join <a href="https://t.me/osradar" target="_blank" rel="noreferrer noopener">our Telegram Channel</a>.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/change-mysql-mariadb-storage-engine-wordpress/">How to change MySQL / MariaDB storage engine to a WordPress site?</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/change-mysql-mariadb-storage-engine-wordpress/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to install Feng Office on a web server</title>
		<link>https://www.osradar.com/how-to-install-feng-office-on-a-web-server/</link>
					<comments>https://www.osradar.com/how-to-install-feng-office-on-a-web-server/#respond</comments>
		
		<dc:creator><![CDATA[roger]]></dc:creator>
		<pubDate>Sat, 15 Aug 2020 21:43:00 +0000</pubDate>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[fengoffice]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[webserver]]></category>
		<category><![CDATA[xampp]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=22736</guid>

					<description><![CDATA[<p>Hello! We continue to explore the world of web development. Specifically, the additions we can make to a web server. This time, we&#8217;ll talk a little about Feng Office. This is a project and team management web application. It also allows you to edit, share, and publish documents, emails, and calendars. Similarly, it is aimed [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-install-feng-office-on-a-web-server/">How to install Feng Office on a web server</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! We continue to explore the world of web development. Specifically, the additions we can make to a web server. This time, we&#8217;ll talk a little about Feng Office. This is a project and team management web application. It also allows you to edit, share, and publish documents, emails, and calendars. Similarly, it is aimed at improving the productivity of the group with web document management and CRM. It is based on PHP and MySQL. As you can see, it has very interesting features. So let&#8217;s see how to install Feng Office on a web server.</p>



<h2>Prerequisites</h2>



<ul><li><a href="https://www.osradar.com/how-to-install-apache-on-windows-10/" target="_blank" rel="noreferrer noopener">Apache Web Server</a></li><li><a href="https://www.osradar.com/how-to-install-mysql-in-windows-10/" target="_blank" rel="noreferrer noopener">MySQL database</a></li><li><a href="https://www.osradar.com/how-to-install-php-in-windows-10/" target="_blank" rel="noreferrer noopener">PHP</a></li></ul>



<p>You can install these components independently, as I explain in each of the links. However, a faster and more comfortable option is through <a href="https://www.osradar.com/how-to-install-xampp-on-windows-10/" target="_blank" rel="noreferrer noopener">Xampp.</a></p>



<h2>Downloading Feng Office Community Edition</h2>



<p>This is open-source software. However, it offers a free version and two paid versions called Professional and Enterprise Edition. It is also possible to enjoy a free trial of the software. Nevertheless, today we will use the Community Version. Which is very complete and also free. You can download it from this <a href="https://github.com/fengoffice/fengoffice/archive/3.8.3.3.zip" target="_blank" rel="noreferrer noopener">link.</a> Once you have downloaded the file, please unzip it and paste it into the <em>httdocs</em> folder.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="787" src="//1081754738.rsc.cdn77.org/wp-content/uploads/2020/08/feng13-1024x787.png" alt="Paste the contents of the uncompressed file into the httdocs folder" class="wp-image-22744" srcset="https://www.osradar.com/wp-content/uploads/2020/08/feng13-1024x787.png 1024w, https://www.osradar.com/wp-content/uploads/2020/08/feng13-300x231.png 300w, https://www.osradar.com/wp-content/uploads/2020/08/feng13-768x590.png 768w, https://www.osradar.com/wp-content/uploads/2020/08/feng13-696x535.png 696w, https://www.osradar.com/wp-content/uploads/2020/08/feng13-1068x821.png 1068w, https://www.osradar.com/wp-content/uploads/2020/08/feng13-80x60.png 80w, https://www.osradar.com/wp-content/uploads/2020/08/feng13.png 1280w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>Paste the contents of the uncompressed file into the httdocs folder</figcaption></figure>



<h2>Installing Feng Office.</h2>



<h3>Creating the database</h3>



<p>With the Apache and MySQL servers up and running, it&#8217;s time to create the database for Feng Office. For this example, we will use the PhpMyAdmin tool included in Xampp. Also, you can assign any name you want to the 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/08/feng-1024x787.png" alt="Creating the database for Feng Office with phpMyAdmin" class="wp-image-22746" srcset="https://www.osradar.com/wp-content/uploads/2020/08/feng-1024x787.png 1024w, https://www.osradar.com/wp-content/uploads/2020/08/feng-300x231.png 300w, https://www.osradar.com/wp-content/uploads/2020/08/feng-768x590.png 768w, https://www.osradar.com/wp-content/uploads/2020/08/feng-696x535.png 696w, https://www.osradar.com/wp-content/uploads/2020/08/feng-1068x821.png 1068w, https://www.osradar.com/wp-content/uploads/2020/08/feng-80x60.png 80w, https://www.osradar.com/wp-content/uploads/2020/08/feng.png 1280w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>Creating the database for Feng Office with phpMyAdmin</figcaption></figure>



<h3>Configuring Feng Office on the web server.</h3>



<p>Once the database is created, please paste the following address into your web browser: http://localhost/fengoffice-3.8.3.3. This action will launch the application installer. On the welcome screen, please press Next to begin the installation.</p>



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



<p>Then, the wizard will check the requirements to continue the installation. In addition, it will mark possible errors in red. If everything is in order, please press <strong>Next</strong> to continue.</p>



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



<p>Then enter the corresponding values into the database. Such as user name, database name, password, among others. Likewise, you can choose the plug-ins to be installed.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="796" src="//1081754738.rsc.cdn77.org/wp-content/uploads/2020/08/feng4-1024x796.png" alt="Please configure the database. " class="wp-image-22753" srcset="https://www.osradar.com/wp-content/uploads/2020/08/feng4-1024x796.png 1024w, https://www.osradar.com/wp-content/uploads/2020/08/feng4-300x233.png 300w, https://www.osradar.com/wp-content/uploads/2020/08/feng4-768x597.png 768w, https://www.osradar.com/wp-content/uploads/2020/08/feng4-696x541.png 696w, https://www.osradar.com/wp-content/uploads/2020/08/feng4-1068x830.png 1068w, https://www.osradar.com/wp-content/uploads/2020/08/feng4.png 1280w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>Please configure the database.</figcaption></figure>



<p>After a few moments, you are ready to finish the installation of the app.</p>



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



<h2>Configuring the Feng Office admin user.</h2>



<p>At this point it is necessary to enter the administrator&#8217;s credentials. That is, the username and email address. In addition to the password and the name of the company.</p>



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



<p>Finally, login to the app using your newly created credentials.</p>



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



<h2>First steps with Feng Office</h2>



<h3>Adding the calendar</h3>



<p>After logging in as the administrator, the program&#8217;s Dashboard will be displayed. In the first place, click on <strong>System Modules.</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/08/feng8-1024x787.png" alt="Go to the system modules" class="wp-image-22764" srcset="https://www.osradar.com/wp-content/uploads/2020/08/feng8-1024x787.png 1024w, https://www.osradar.com/wp-content/uploads/2020/08/feng8-300x231.png 300w, https://www.osradar.com/wp-content/uploads/2020/08/feng8-768x590.png 768w, https://www.osradar.com/wp-content/uploads/2020/08/feng8-696x535.png 696w, https://www.osradar.com/wp-content/uploads/2020/08/feng8-1068x821.png 1068w, https://www.osradar.com/wp-content/uploads/2020/08/feng8-80x60.png 80w, https://www.osradar.com/wp-content/uploads/2020/08/feng8.png 1280w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>Go to the system modules</figcaption></figure>



<p>For this example, I will select Calendar. Then click on Apply changes to add the new feature. Please note that you can add any feature from this box.</p>



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



<p>Back to the main screen, you can see that the Calendar module has been successfully added.</p>



<h3>Adding a new user</h3>



<p>Please click on Users to add a new user or group of users.</p>



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



<p>Then add the user&#8217;s data and finally click on <strong>Add user.</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/08/feng11-1024x787.png" alt="" class="wp-image-22769" srcset="https://www.osradar.com/wp-content/uploads/2020/08/feng11-1024x787.png 1024w, https://www.osradar.com/wp-content/uploads/2020/08/feng11-300x231.png 300w, https://www.osradar.com/wp-content/uploads/2020/08/feng11-768x590.png 768w, https://www.osradar.com/wp-content/uploads/2020/08/feng11-696x535.png 696w, https://www.osradar.com/wp-content/uploads/2020/08/feng11-1068x821.png 1068w, https://www.osradar.com/wp-content/uploads/2020/08/feng11-80x60.png 80w, https://www.osradar.com/wp-content/uploads/2020/08/feng11.png 1280w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>Adding a new user</figcaption></figure>



<p>Finally, you will see the new user within the list.</p>



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



<p>From now on, I invite you to continue exploring the app. You can manage your workspaces or create new tasks. Feng Office is very intuitive and easy to use. I hope you enjoyed how to install Feng Office on your web server. Bye!</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-install-feng-office-on-a-web-server/">How to install Feng Office on a web server</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-feng-office-on-a-web-server/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>
	</channel>
</rss>
