<?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>wordpress Archives - Linux Windows and android Tutorials</title>
	<atom:link href="https://www.osradar.com/tag/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.osradar.com</link>
	<description>tutorials and news and Seurity</description>
	<lastBuildDate>Sat, 11 Sep 2021 16:13:48 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.8.13</generator>
	<item>
		<title>Install WordPress on Debian 11</title>
		<link>https://www.osradar.com/install-wordpress-debian/</link>
					<comments>https://www.osradar.com/install-wordpress-debian/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Thu, 16 Sep 2021 23:12:00 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[bullseye]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[wordpress]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=32159</guid>

					<description><![CDATA[<p>Hello, friends. With the release of Debian 11, many will take this moment to deploy new personal websites using WordPress. So, in this post, you will learn how to install WordPress on Debian 11. By way of introduction, WordPress is an open-source CMS (Content Management System) that allows us to deploy a website or a [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-wordpress-debian/">Install WordPress 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. With the release of Debian 11, many will take this moment to deploy new personal websites using WordPress. So, in this post, you will learn how to install WordPress on Debian 11.</p>



<p class="has-line-data">By way of introduction, <strong><a href="https://wordpress.com" target="_blank" rel="noreferrer noopener">WordPress </a>is an open-source CMS (Content Management System) that allows us to deploy a website or a blog quickly but including a lot of advanced features</strong>.</p>



<p class="has-line-data">In addition to this, we can upload new information from a control panel via a web interface so the ease of administration is complete. It is worth noting that a huge amount of websites are deployed with WordPress, this gives you an idea of how complete it is.</p>



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



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



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



<p class="has-line-data">As WordPress is a web application created with PHP and requires a database manager like MariaDB, then we can use the LAMP stack for our purpose.</p>



<p class="has-line-data">To do so, first read our post about Apache and PHP</p>



<p class="has-line-data"><a href="https://www.osradar.com/install-apache-web-server-php-debian-linux/" target="_blank" rel="noreferrer noopener">How to install Apache on Debian 11?</a></p>



<p class="has-line-data">Also, you will need these PHP modules for WordPress to work at least in a basic way.</p>



<pre class="wp-block-preformatted">php7.4 libapache2-mod-php7.4 php7.4-common php7.4-mbstring php7.4-xmlrpc php7.4-soap php7.4-gd php7.4-xml php7.4-intl php7.4-mysql php7.4-cli php7.4-ldap php7.4-zip php7.4-curl php7.4-zip php7.4-curl</pre>



<p class="has-line-data">And then complete the LAMP installation with MariaDB.</p>



<p class="has-line-data"><a href="https://www.osradar.com/install-mariadb-database-debian/" target="_blank" rel="noreferrer noopener">How to install MariaDB on Debian 11?</a></p>



<p class="has-line-data">Now with MariaDB installed, the next step is to create a new database and MariaDB user dedicated to WordPress. To do this, enter the MariaDB shell</p>



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



<p class="has-line-data">And create the database with the name you want:</p>



<pre class="wp-block-preformatted">CREATE DATABASE wordpress;</pre>



<p class="has-line-data">After this, create a new user with permissions on the database.</p>



<pre class="wp-block-preformatted">GRANT ALL PRIVILEGES on wordpress.* TO 'wordpress_user'@'localhost' IDENTIFIED BY 'wordpress_pss123';</pre>



<p class="has-line-data">You can replace the username and password with any values you want.</p>



<p class="has-line-data">Refresh permissions</p>



<pre class="wp-block-preformatted">FLUSH PRIVILEGES;</pre>



<p class="has-line-data">And exit the console</p>



<pre class="wp-block-preformatted">exit;</pre>



<p class="has-line-data">With this, we have the system ready for WordPress.</p>



<h3 class="code-line"><a id="Download_the_WordPress_package_50"></a>Download the WordPress package</h3>



<p class="has-line-data">The next step is to download the latest stable version of WordPress for Linux. This step will be done from the <code>/tmp</code> folder and using the <code>wget</code> command.</p>



<pre class="wp-block-preformatted">cd /tmp
wget https://wordpress.org/latest.tar.gz
--2021-09-11 17:41:50--  https://wordpress.org/latest.tar.gz
Resolving wordpress.org (wordpress.org)... 198.143.164.252
Connecting to wordpress.org (wordpress.org)|198.143.164.252|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 15087630 (14M) [application/octet-stream]
Saving to: ‘latest.tar.gz’

latest.tar.gz                             100%[=====================================================================================>]  14.39M  10.6MB/s    in 1.4s

2021-09-11 17:41:52 (10.6 MB/s) - ‘latest.tar.gz’ saved [15087630/15087630]</pre>



<p class="has-line-data">When the download is finished, unzip it, move it to the Apache root directory, assign the appropriate permissions and make Apache the owner of the folder so that it will not have any problems running.</p>



<pre class="wp-block-preformatted">tar -xvzf latest.tar.gz
sudo mv wordpress/ /var/www/html/
sudo chmod 755 -R /var/www/html/wordpress/
sudo chown -R www-data:www-data /var/www/html/wordpress/</pre>



<p class="has-line-data">Next, create a new VirtualHost to better manage the WordPress website</p>



<pre class="wp-block-preformatted">sudo nano /etc/apache2/sites-available/wordpress.conf</pre>



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



<pre class="wp-block-preformatted">&lt;VirtualHost *:80>
     ServerAdmin admin@your_domain.com
      DocumentRoot /var/www/html/wordpress
     ServerName your-domain.com

     &lt;Directory /var/www/html/wordpress>
          Options FollowSymlinks
          AllowOverride All
          Require all granted
     &lt;/Directory>

     ErrorLog ${APACHE_LOG_DIR}/your-domain.com_error.log
     CustomLog ${APACHE_LOG_DIR}/your-domain.com_access.log combined

&lt;/VirtualHost></pre>



<p class="has-line-data">Replace the <code>ServerName</code> and <code>ServerAdmin</code> values with the appropriate values which are your domain and Admin email.</p>



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



<p class="has-line-data">Now enable the new Apache site and the Apache <code>rewrite</code> module.</p>



<pre class="wp-block-preformatted">sudo ln -s /etc/apache2/sites-available/wordpress.conf /etc/apache2/sites-enabled/wordpress.conf
sudo a2enmod rewrite</pre>



<p class="has-line-data">Apply changes by restarting Apache</p>



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



<h3 class="code-line"><a id="Install_the_Lets_Encrypt_certificates_85"></a>Install the Let’s Encrypt certificates</h3>



<p class="has-line-data">As your site will be on the internet, you should enable HTTPS and for that, you have to generate and install the Let’s Encrypt certificates which we can do with the help of Certbot.</p>



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



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



<p class="has-line-data">And generate the certificates, with the following command</p>



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



<p class="has-line-data">Replace <code>[your-domain]</code> with your domain. During the process, you will have to enter an email address and accept the license terms.</p>



<p class="has-line-data">Afterward, if the process is successful you will be notified and you can restart Apache and finish the process.</p>



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



<p class="has-line-data">Now open a web browser and go to <code>https://yourdomain</code> and you will see the following screen starting the installer.</p>



<p class="has-line-data">Start by selecting the language of the installation.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="518" src="https://www.osradar.com/wp-content/uploads/2021/09/1-6-1024x518.png" alt="1.- Language installation" class="wp-image-32248" srcset="https://www.osradar.com/wp-content/uploads/2021/09/1-6-1024x518.png 1024w, https://www.osradar.com/wp-content/uploads/2021/09/1-6-300x152.png 300w, https://www.osradar.com/wp-content/uploads/2021/09/1-6-768x388.png 768w, https://www.osradar.com/wp-content/uploads/2021/09/1-6-696x352.png 696w, https://www.osradar.com/wp-content/uploads/2021/09/1-6-1068x540.png 1068w, https://www.osradar.com/wp-content/uploads/2021/09/1-6.png 1349w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>1.- Language installation</figcaption></figure>



<p class="has-line-data">Then the installer will notify you of the information needed for installation.</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/2-3-1024x511.png" alt="2.- Start the WordPress installation" class="wp-image-32249" srcset="https://www.osradar.com/wp-content/uploads/2021/09/2-3-1024x511.png 1024w, https://www.osradar.com/wp-content/uploads/2021/09/2-3-300x150.png 300w, https://www.osradar.com/wp-content/uploads/2021/09/2-3-768x383.png 768w, https://www.osradar.com/wp-content/uploads/2021/09/2-3-696x347.png 696w, https://www.osradar.com/wp-content/uploads/2021/09/2-3-1068x533.png 1068w, https://www.osradar.com/wp-content/uploads/2021/09/2-3.png 1366w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>2.- Start the WordPress installation</figcaption></figure>



<p class="has-line-data">After this, enter the parameters of the created database such as database name, user, and password.</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/3-2-1024x511.png" alt="3.- Database parameters" class="wp-image-32250" srcset="https://www.osradar.com/wp-content/uploads/2021/09/3-2-1024x511.png 1024w, https://www.osradar.com/wp-content/uploads/2021/09/3-2-300x150.png 300w, https://www.osradar.com/wp-content/uploads/2021/09/3-2-768x383.png 768w, https://www.osradar.com/wp-content/uploads/2021/09/3-2-696x347.png 696w, https://www.osradar.com/wp-content/uploads/2021/09/3-2-1068x533.png 1068w, https://www.osradar.com/wp-content/uploads/2021/09/3-2.png 1366w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>3.- Database parameters</figcaption></figure>



<p class="has-line-data">If everything went well, you will see a screen informing you that the process was successful.</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/4-1-1024x511.png" alt="4.- Database connection properly defined" class="wp-image-32251" srcset="https://www.osradar.com/wp-content/uploads/2021/09/4-1-1024x511.png 1024w, https://www.osradar.com/wp-content/uploads/2021/09/4-1-300x150.png 300w, https://www.osradar.com/wp-content/uploads/2021/09/4-1-768x383.png 768w, https://www.osradar.com/wp-content/uploads/2021/09/4-1-696x347.png 696w, https://www.osradar.com/wp-content/uploads/2021/09/4-1-1068x533.png 1068w, https://www.osradar.com/wp-content/uploads/2021/09/4-1.png 1366w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>4.- Database connection properly done</figcaption></figure>



<p class="has-line-data">Now, enter the information of the website you are creating. Also, on that screen, you will have to create the WordPress administrator user. Then, press the <em>Install WordPress</em> button.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="518" src="https://www.osradar.com/wp-content/uploads/2021/09/5-1024x518.png" alt="5.- Site information" class="wp-image-32252" srcset="https://www.osradar.com/wp-content/uploads/2021/09/5-1024x518.png 1024w, https://www.osradar.com/wp-content/uploads/2021/09/5-300x152.png 300w, https://www.osradar.com/wp-content/uploads/2021/09/5-768x389.png 768w, https://www.osradar.com/wp-content/uploads/2021/09/5-696x352.png 696w, https://www.osradar.com/wp-content/uploads/2021/09/5-1068x540.png 1068w, https://www.osradar.com/wp-content/uploads/2021/09/5.png 1348w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>5.- Site information</figcaption></figure>



<p class="has-line-data">If everything went well, you will see this 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/6-1024x511.png" alt="6.- WordPress installed" class="wp-image-32253" srcset="https://www.osradar.com/wp-content/uploads/2021/09/6-1024x511.png 1024w, https://www.osradar.com/wp-content/uploads/2021/09/6-300x150.png 300w, https://www.osradar.com/wp-content/uploads/2021/09/6-768x383.png 768w, https://www.osradar.com/wp-content/uploads/2021/09/6-696x347.png 696w, https://www.osradar.com/wp-content/uploads/2021/09/6-1068x533.png 1068w, https://www.osradar.com/wp-content/uploads/2021/09/6.png 1366w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>6.- WordPress installed</figcaption></figure>



<p class="has-line-data">Now you just need to log in with your credentials.</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/7-1024x511.png" alt="7.- WordPress Login screen" class="wp-image-32254" srcset="https://www.osradar.com/wp-content/uploads/2021/09/7-1024x511.png 1024w, https://www.osradar.com/wp-content/uploads/2021/09/7-300x150.png 300w, https://www.osradar.com/wp-content/uploads/2021/09/7-768x383.png 768w, https://www.osradar.com/wp-content/uploads/2021/09/7-696x347.png 696w, https://www.osradar.com/wp-content/uploads/2021/09/7-1068x533.png 1068w, https://www.osradar.com/wp-content/uploads/2021/09/7.png 1366w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>7.- WordPress Login screen</figcaption></figure>



<p class="has-line-data">And see the WordPress dashboard indicating that everything went well.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1349" height="682" src="https://www.osradar.com/wp-content/uploads/2021/09/8-1024x518.png" alt="8.- WordPress on Debian 11" class="wp-image-32255" srcset="https://www.osradar.com/wp-content/uploads/2021/09/8-1024x518.png 1024w, https://www.osradar.com/wp-content/uploads/2021/09/8-300x152.png 300w, https://www.osradar.com/wp-content/uploads/2021/09/8-768x388.png 768w, https://www.osradar.com/wp-content/uploads/2021/09/8-696x352.png 696w, https://www.osradar.com/wp-content/uploads/2021/09/8-1068x540.png 1068w, https://www.osradar.com/wp-content/uploads/2021/09/8.png 1349w" sizes="(max-width: 1349px) 100vw, 1349px" /><figcaption>8.- WordPress on Debian 11</figcaption></figure>



<p class="has-line-data">Enjoy it.</p>



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



<p class="has-line-data">In this post, you have learned how to install WordPress on Debian 11 using Apache as the web server. This process has been done step by step in a way that anyone can do it. Now that you know how to do it, give it a try.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-wordpress-debian/">Install WordPress 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-wordpress-debian/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to install WordPress with OpenLiteSpeed on CentOS 8?</title>
		<link>https://www.osradar.com/install-wordpress-openlitespeed-centos/</link>
					<comments>https://www.osradar.com/install-wordpress-openlitespeed-centos/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Mon, 16 Nov 2020 01:54:00 +0000</pubDate>
				<category><![CDATA[Databases]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[CentOS]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[wordpress]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=25340</guid>

					<description><![CDATA[<p>Hello, friends. In this post, you will learn how to install WordPress with OpenLiteSpeed on CentOS 8 This post is a continuation of our post How to install OpenLiteSpeed on CentOS 8? So before you do the tutorial, you should review the other one. Install WordPress with OpenLiteSpeed on CentOS 8? As we have already [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-wordpress-openlitespeed-centos/">How to install WordPress with OpenLiteSpeed 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><strong>Hello, friends. In this post, you will learn how to install WordPress with OpenLiteSpeed on CentOS 8</strong></p>



<p>This post is a continuation of our post</p>



<p><a href="https://www.osradar.com/install-openlitespeed-centos-8/" target="_blank" rel="noreferrer noopener">How to install OpenLiteSpeed on CentOS 8?</a></p>



<p>So before you do the tutorial, you should review the other one.</p>



<h2>Install WordPress with OpenLiteSpeed on CentOS 8?</h2>



<p>As we have already said, the first thing is to install and configure OpenLiteSpeed on CentOS 8. But also, to install some additional modules and packages.</p>



<pre class="wp-block-preformatted">dnf install lsphp74-common lsphp74-curl lsphp74-imap lsphp74-json lsphp74-mysqlnd lsphp74-opcache lsphp74-imagick lsphp74-memcached lsphp74-redis tar</pre>



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



<h3>1.- Creating the new database for WordPress</h3>



<p>WordPress handles a lot of data and all of it is stored in a database manager. As we already have <a href="http://mariadb.com/" target="_blank" rel="noreferrer noopener">MariaDB</a> then this is the one we will use.</p>



<p>So, open the MariaDB shell:</p>



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



<p>And it starts to create the new database, the user, and assign the corresponding permissions:</p>



<pre class="wp-block-preformatted">CREATE DATABASE wordpress;<br>GRANT ALL PRIVILEGES on wordpress.* TO 'wordpress_user'@'localhost' IDENTIFIED BY 'wordpress_pss123';<br>FLUSH PRIVILEGES;<br>EXIT;</pre>



<p>Of course, replace the user, password, and database name values with the ones you want.</p>



<h3>2.- Download WordPress on CentOS 8</h3>



<p>The next step is to download WordPress. To do this, we will place ourselves in the default OpenLiteSpeed DocumentRoot.</p>



<pre class="wp-block-preformatted">cd /usr/local/lsws/Example/html/</pre>



<p>And from there we will make the download using the <a href="https://www.osradar.com/the-wget-command/" target="_blank" rel="noreferrer noopener">wget command</a>.</p>



<pre class="wp-block-preformatted">wget https://wordpress.org/latest.tar.gz</pre>



<p>Then decompress the downloaded file:</p>



<pre class="wp-block-preformatted">tar xvfz latest.tar.gz</pre>



<p>And assign the corresponding permissions:</p>



<pre class="wp-block-preformatted">chmod -R 640 /usr/local/lsws/Example/html/wordpress/</pre>



<p>Also, it changes the owner of it for the regular user, in my case:</p>



<pre class="wp-block-preformatted">chown -R angelo:angelo /usr/local/lsws/Example/html/wordpress/</pre>



<p>Now, to configure OpenLiteSpeed.</p>



<h3>3.- Configuring OpenLiteSpeed</h3>



<p>Now you have to do some configuration to OpenLiteSpeed from the web interface of the program.</p>



<p>So, in a web browser, go to <code>http://your-server:7080</code> to see the OpenLiteSpeed login screen. Enter your credentials and then you will see the dashboard.</p>



<p>Then, go to the Virtualhost section where you will see a summary of active Virutalhost.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="502" src="https://www.osradar.com/wp-content/uploads/2020/11/1-6-1024x502.png" alt="1.- Virtualhost section on OpenLiteSpeed" class="wp-image-25404" srcset="https://www.osradar.com/wp-content/uploads/2020/11/1-6-1024x502.png 1024w, https://www.osradar.com/wp-content/uploads/2020/11/1-6-300x147.png 300w, https://www.osradar.com/wp-content/uploads/2020/11/1-6-768x376.png 768w, https://www.osradar.com/wp-content/uploads/2020/11/1-6-696x341.png 696w, https://www.osradar.com/wp-content/uploads/2020/11/1-6-1068x523.png 1068w, https://www.osradar.com/wp-content/uploads/2020/11/1-6.png 1366w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>1.- Virtualhost section on OpenLiteSpeed</figcaption></figure>



<p>Click on the glass button to see the Virtualhost data called <em>Example</em>.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="506" src="https://www.osradar.com/wp-content/uploads/2020/11/2-4-1024x506.png" alt="2.- Virtualhost values" class="wp-image-25405" srcset="https://www.osradar.com/wp-content/uploads/2020/11/2-4-1024x506.png 1024w, https://www.osradar.com/wp-content/uploads/2020/11/2-4-300x148.png 300w, https://www.osradar.com/wp-content/uploads/2020/11/2-4-768x379.png 768w, https://www.osradar.com/wp-content/uploads/2020/11/2-4-696x344.png 696w, https://www.osradar.com/wp-content/uploads/2020/11/2-4-1068x528.png 1068w, https://www.osradar.com/wp-content/uploads/2020/11/2-4.png 1354w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>2.- Virtualhost values</figcaption></figure>



<p>Go to the <em>General</em> tab to see Virtualhost settings.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="506" src="https://www.osradar.com/wp-content/uploads/2020/11/3-4-1024x506.png" alt="3.- General values of the Virtualhost" class="wp-image-25406" srcset="https://www.osradar.com/wp-content/uploads/2020/11/3-4-1024x506.png 1024w, https://www.osradar.com/wp-content/uploads/2020/11/3-4-300x148.png 300w, https://www.osradar.com/wp-content/uploads/2020/11/3-4-768x379.png 768w, https://www.osradar.com/wp-content/uploads/2020/11/3-4-696x344.png 696w, https://www.osradar.com/wp-content/uploads/2020/11/3-4-1068x528.png 1068w, https://www.osradar.com/wp-content/uploads/2020/11/3-4.png 1354w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>3.- General values of the Virtualhost</figcaption></figure>



<p>In the <em>General</em> section, click the modify button on the right.</p>



<p>And modify:</p>



<pre class="wp-block-preformatted">Document Root<br>Domain Name</pre>



<p>It looks like this. Then click on the button on the floppy disk that saves the changes made.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="506" src="https://www.osradar.com/wp-content/uploads/2020/11/4-4-1024x506.png" alt="4.- Modifying the Virtualhost values" class="wp-image-25407" srcset="https://www.osradar.com/wp-content/uploads/2020/11/4-4-1024x506.png 1024w, https://www.osradar.com/wp-content/uploads/2020/11/4-4-300x148.png 300w, https://www.osradar.com/wp-content/uploads/2020/11/4-4-768x379.png 768w, https://www.osradar.com/wp-content/uploads/2020/11/4-4-696x344.png 696w, https://www.osradar.com/wp-content/uploads/2020/11/4-4-1068x528.png 1068w, https://www.osradar.com/wp-content/uploads/2020/11/4-4.png 1354w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>4.- Modifying the Virtualhost values</figcaption></figure>



<p>Then, back to the VirtualHost settings, in the Index File section click on the <em>modify</em> button</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="506" src="https://www.osradar.com/wp-content/uploads/2020/11/5-3-1024x506.png" alt="5.- Index file section" class="wp-image-25408" srcset="https://www.osradar.com/wp-content/uploads/2020/11/5-3-1024x506.png 1024w, https://www.osradar.com/wp-content/uploads/2020/11/5-3-300x148.png 300w, https://www.osradar.com/wp-content/uploads/2020/11/5-3-768x379.png 768w, https://www.osradar.com/wp-content/uploads/2020/11/5-3-696x344.png 696w, https://www.osradar.com/wp-content/uploads/2020/11/5-3-1068x528.png 1068w, https://www.osradar.com/wp-content/uploads/2020/11/5-3.png 1354w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>5.- Index file section</figcaption></figure>



<p>And in the Index Files section he adds:</p>



<pre class="wp-block-preformatted">index.php</pre>



<p>The following is the way it works</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="506" src="https://www.osradar.com/wp-content/uploads/2020/11/6-4-1024x506.png" alt="6.- Adding the index.php files to the index section" class="wp-image-25409" srcset="https://www.osradar.com/wp-content/uploads/2020/11/6-4-1024x506.png 1024w, https://www.osradar.com/wp-content/uploads/2020/11/6-4-300x148.png 300w, https://www.osradar.com/wp-content/uploads/2020/11/6-4-768x379.png 768w, https://www.osradar.com/wp-content/uploads/2020/11/6-4-696x344.png 696w, https://www.osradar.com/wp-content/uploads/2020/11/6-4-1068x528.png 1068w, https://www.osradar.com/wp-content/uploads/2020/11/6-4.png 1354w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>6.- Adding the index.php files to the index section</figcaption></figure>



<p>Now save the changes on the Diskette button.</p>



<p>Then click on the <em>Rewrite</em> tab.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="502" src="https://www.osradar.com/wp-content/uploads/2020/11/7-4-1024x502.png" alt="7.- Enable the Rewrite module" class="wp-image-25410" srcset="https://www.osradar.com/wp-content/uploads/2020/11/7-4-1024x502.png 1024w, https://www.osradar.com/wp-content/uploads/2020/11/7-4-300x147.png 300w, https://www.osradar.com/wp-content/uploads/2020/11/7-4-768x376.png 768w, https://www.osradar.com/wp-content/uploads/2020/11/7-4-696x341.png 696w, https://www.osradar.com/wp-content/uploads/2020/11/7-4-1068x523.png 1068w, https://www.osradar.com/wp-content/uploads/2020/11/7-4.png 1366w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>7.- Enable the Rewrite module</figcaption></figure>



<p>In the Rewrite Control section click the modify button on the right and enable the <strong>Rewrite module</strong> and<strong> Autoload .htaccess</strong></p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="502" src="https://www.osradar.com/wp-content/uploads/2020/11/8-4-1024x502.png" alt="8.- Configuring OpenLiteSpeed" class="wp-image-25411" srcset="https://www.osradar.com/wp-content/uploads/2020/11/8-4-1024x502.png 1024w, https://www.osradar.com/wp-content/uploads/2020/11/8-4-300x147.png 300w, https://www.osradar.com/wp-content/uploads/2020/11/8-4-768x376.png 768w, https://www.osradar.com/wp-content/uploads/2020/11/8-4-696x341.png 696w, https://www.osradar.com/wp-content/uploads/2020/11/8-4-1068x523.png 1068w, https://www.osradar.com/wp-content/uploads/2020/11/8-4.png 1366w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>8.- Configuring OpenLiteSpeed</figcaption></figure>



<p>Then save the changes.</p>



<p>Finally, restart OpenLiteSpeed in the green button.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="72" src="https://www.osradar.com/wp-content/uploads/2020/11/11-3-1024x72.png" alt="9.- Restart OpenLiteSpeed on CentOS 8" class="wp-image-25412" srcset="https://www.osradar.com/wp-content/uploads/2020/11/11-3-1024x72.png 1024w, https://www.osradar.com/wp-content/uploads/2020/11/11-3-300x21.png 300w, https://www.osradar.com/wp-content/uploads/2020/11/11-3-768x54.png 768w, https://www.osradar.com/wp-content/uploads/2020/11/11-3-696x49.png 696w, https://www.osradar.com/wp-content/uploads/2020/11/11-3-1068x75.png 1068w, https://www.osradar.com/wp-content/uploads/2020/11/11-3.png 1132w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>9.- Restart OpenLiteSpeed on CentOS 8</figcaption></figure>



<h3>4.- Install WordPress with OpenLiteSpeed</h3>



<p>Now you can install WordPress with OpenLiteSpeed without any problem.</p>



<p>So, in the browser go to your server and you will see the WordPress welcome screen.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="502" src="https://www.osradar.com/wp-content/uploads/2020/11/10-4-1024x502.png" alt="10.-Install WordPress with OpenLiteSpeed on CentOS 8" class="wp-image-25414" srcset="https://www.osradar.com/wp-content/uploads/2020/11/10-4-1024x502.png 1024w, https://www.osradar.com/wp-content/uploads/2020/11/10-4-300x147.png 300w, https://www.osradar.com/wp-content/uploads/2020/11/10-4-768x376.png 768w, https://www.osradar.com/wp-content/uploads/2020/11/10-4-696x341.png 696w, https://www.osradar.com/wp-content/uploads/2020/11/10-4-1068x523.png 1068w, https://www.osradar.com/wp-content/uploads/2020/11/10-4.png 1366w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>10.-Install WordPress with OpenLiteSpeed on CentOS 8</figcaption></figure>



<p>In the next screen, add the configuration data from the database we created earlier.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="502" src="https://www.osradar.com/wp-content/uploads/2020/11/11-4-1024x502.png" alt="11.- Configuring the WordPress Database" class="wp-image-25415" srcset="https://www.osradar.com/wp-content/uploads/2020/11/11-4-1024x502.png 1024w, https://www.osradar.com/wp-content/uploads/2020/11/11-4-300x147.png 300w, https://www.osradar.com/wp-content/uploads/2020/11/11-4-768x376.png 768w, https://www.osradar.com/wp-content/uploads/2020/11/11-4-696x341.png 696w, https://www.osradar.com/wp-content/uploads/2020/11/11-4-1068x523.png 1068w, https://www.osradar.com/wp-content/uploads/2020/11/11-4.png 1366w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>11.- Configuring the WordPress Database</figcaption></figure>



<p>If the connection to the database is successful, you will see this screen, and to start the installation just click on the <em>Run the Installation</em> button.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="502" src="https://www.osradar.com/wp-content/uploads/2020/11/12-2-1024x502.png" alt="12.- Installing WordPress iwth OpenLiteSpeed on CentOS 8" class="wp-image-25416" srcset="https://www.osradar.com/wp-content/uploads/2020/11/12-2-1024x502.png 1024w, https://www.osradar.com/wp-content/uploads/2020/11/12-2-300x147.png 300w, https://www.osradar.com/wp-content/uploads/2020/11/12-2-768x376.png 768w, https://www.osradar.com/wp-content/uploads/2020/11/12-2-696x341.png 696w, https://www.osradar.com/wp-content/uploads/2020/11/12-2-1068x523.png 1068w, https://www.osradar.com/wp-content/uploads/2020/11/12-2.png 1366w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>12.- Installing WordPress iwth OpenLiteSpeed on CentOS 8</figcaption></figure>



<p>You will then have to add the information of the site you are creating, as well as the administrator account and password.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="506" src="https://www.osradar.com/wp-content/uploads/2020/11/13-1-1024x506.png" alt="13.- Creating the site info on WordPress" class="wp-image-25417" srcset="https://www.osradar.com/wp-content/uploads/2020/11/13-1-1024x506.png 1024w, https://www.osradar.com/wp-content/uploads/2020/11/13-1-300x148.png 300w, https://www.osradar.com/wp-content/uploads/2020/11/13-1-768x379.png 768w, https://www.osradar.com/wp-content/uploads/2020/11/13-1-696x344.png 696w, https://www.osradar.com/wp-content/uploads/2020/11/13-1-1068x528.png 1068w, https://www.osradar.com/wp-content/uploads/2020/11/13-1.png 1354w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>13.- Creating the site info on WordPress</figcaption></figure>



<p>If everything goes well, you will see the following screen:</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="502" src="https://www.osradar.com/wp-content/uploads/2020/11/14-1024x502.png" alt="14.- WordPress with OpenLiteSpeed installed" class="wp-image-25418" srcset="https://www.osradar.com/wp-content/uploads/2020/11/14-1024x502.png 1024w, https://www.osradar.com/wp-content/uploads/2020/11/14-300x147.png 300w, https://www.osradar.com/wp-content/uploads/2020/11/14-768x376.png 768w, https://www.osradar.com/wp-content/uploads/2020/11/14-696x341.png 696w, https://www.osradar.com/wp-content/uploads/2020/11/14-1068x523.png 1068w, https://www.osradar.com/wp-content/uploads/2020/11/14.png 1366w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>14.- WordPress with OpenLiteSpeed installed</figcaption></figure>



<p>You can then login and access the Dashboard.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="506" src="https://www.osradar.com/wp-content/uploads/2020/11/15-1024x506.png" alt="15.- WordPress dashboard" class="wp-image-25419" srcset="https://www.osradar.com/wp-content/uploads/2020/11/15-1024x506.png 1024w, https://www.osradar.com/wp-content/uploads/2020/11/15-300x148.png 300w, https://www.osradar.com/wp-content/uploads/2020/11/15-768x379.png 768w, https://www.osradar.com/wp-content/uploads/2020/11/15-696x344.png 696w, https://www.osradar.com/wp-content/uploads/2020/11/15-1068x528.png 1068w, https://www.osradar.com/wp-content/uploads/2020/11/15.png 1354w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>15.- WordPress dashboard</figcaption></figure>



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



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

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



<h2>What is Localhost?</h2>



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



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



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



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



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



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



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



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



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



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



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



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



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



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



<p>After this step, you will be able to login to WordPress with your new password. That&#8217;s it! Simple but very useful, right? I hope you can manage your local server more efficiently. Well, we finally saw how to reset your WordPress password on Localhost. Bye!</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-reset-your-wordpress-password-on-localhost/">How to reset your WordPress password on Localhost.</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.osradar.com/how-to-reset-your-wordpress-password-on-localhost/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to install a wiki in Windows 10.</title>
		<link>https://www.osradar.com/how-to-install-a-wiki-in-windows-10/</link>
					<comments>https://www.osradar.com/how-to-install-a-wiki-in-windows-10/#respond</comments>
		
		<dc:creator><![CDATA[roger]]></dc:creator>
		<pubDate>Tue, 21 Jul 2020 01:40:51 +0000</pubDate>
				<category><![CDATA[Databases]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[mediawiki]]></category>
		<category><![CDATA[wiki]]></category>
		<category><![CDATA[Windows 10]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[xam]]></category>
		<category><![CDATA[xampp]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=21687</guid>

					<description><![CDATA[<p>Hi! Today we will see how to easily install a wiki on Windows 10. A wiki is a website that allows users to add, modify, or delete its content directly from the browser. Consequently, it allows the creation of the website by its own users. Furthermore, it is generally focused on knowledge management, as well [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-install-a-wiki-in-windows-10/">How to install a wiki 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 see how to easily install a wiki on Windows 10. A wiki is a website that allows users to add, modify, or delete its content directly from the browser. Consequently, it allows the creation of the website by its own users. Furthermore, it is generally focused on knowledge management, as well as communities and intranet. Also, to develop this purpose, we will use MediaWiki. This is a free project, written in PHP, well known to be used by Wikipedia. Well, I invite you to see how to install a wiki on your website.</p>



<h2>Prerequisites</h2>



<p>As mentioned, this software is programmed in the PHP language. In addition, a web server is required. For the purposes of this tutorial, we will use the Apache server. Moreover, a very simple way to configure everything related to a web server is using<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> Additionally, you need PHP from 7.2.9 and also MySQL from 5.5.8. Don&#8217;t worry, this is all included with the installation of Xampp.</p>



<h2>How to download MediaWiki.</h2>



<p>The first thing you have to do is go to the <a aria-label="undefined (opens in a new tab)" href="https://www.mediawiki.org/wiki/Download" target="_blank" rel="noreferrer noopener">download</a> section of the MediaWiki project page. Once there, please download the latest stable version. At the time of publication of this post, it is version 1.34.2. Please note that this is a compressed file in <strong>.tar.gz f</strong>ormat. Therefore, you can use a software like 7z or WinRar to decompress it.</p>



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



<p>After the download is completed, two steps are necessary. First, unzip the file and place it at the root of the website. That is, in the <em>httdocs </em>directory of the <strong>Xamp </strong>installation. Then assign the directory the name you want to appear on the website. For example, if you want the name <em>wiki </em>to be displayed, then rename the folder that way. Check out the screenshot below.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="787" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2020/07/wiki-1024x787.png" alt="Please unzip the file at the root of the website. Also, name the wiki." class="wp-image-21689" srcset="https://www.osradar.com/wp-content/uploads/2020/07/wiki-1024x787.png 1024w, https://www.osradar.com/wp-content/uploads/2020/07/wiki-300x231.png 300w, https://www.osradar.com/wp-content/uploads/2020/07/wiki-768x590.png 768w, https://www.osradar.com/wp-content/uploads/2020/07/wiki-696x535.png 696w, https://www.osradar.com/wp-content/uploads/2020/07/wiki-1068x821.png 1068w, https://www.osradar.com/wp-content/uploads/2020/07/wiki-80x60.png 80w, https://www.osradar.com/wp-content/uploads/2020/07/wiki.png 1280w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>Please unzip the file at the root of the website. Also, name the wiki.</figcaption></figure>



<p>Now, with the web server running please open this address in your web browser: <strong>http://localhost/wiki.</strong> An image like the one shown below will be immediately displayed. Please click on <strong>set up wiki first.</strong></p>



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



<h2>Configuring MediaWiki</h2>



<p>In the first place you set the language of the user and the wiki. Please press Continue</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="787" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2020/07/wiki3-1-1024x787.png" alt="Please set the language of the user and the wiki" class="wp-image-21693" srcset="https://www.osradar.com/wp-content/uploads/2020/07/wiki3-1-1024x787.png 1024w, https://www.osradar.com/wp-content/uploads/2020/07/wiki3-1-300x231.png 300w, https://www.osradar.com/wp-content/uploads/2020/07/wiki3-1-768x590.png 768w, https://www.osradar.com/wp-content/uploads/2020/07/wiki3-1-696x535.png 696w, https://www.osradar.com/wp-content/uploads/2020/07/wiki3-1-1068x821.png 1068w, https://www.osradar.com/wp-content/uploads/2020/07/wiki3-1-80x60.png 80w, https://www.osradar.com/wp-content/uploads/2020/07/wiki3-1.png 1280w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>Please set the language of the user and the wiki</figcaption></figure>



<p>The wizard will then validate the prerequisites for the installation. Once the environment parameters have been checked, it is time to start the installation by clicking on <strong>Continue</strong></p>



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



<p>Then it&#8217;s time to set up the database aspects. That is, the name, user and password. If this does not exist, then select the superuser account. Please leave the password field blank.</p>



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



<p>Then confirm the parameters to use the same account for the installation.</p>



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



<p>Now it&#8217;s time to name the wiki. In addition, you must configure the namespace of the project. Finally, set the wiki administrator credentials.With these settings, you are ready to start the MediaWiki installation. With this intention, select the option to start the installation</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="787" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2020/07/wiki8-1-1024x787.png" alt="Please set the name of the wiki and the project. Also, assign the administrator credentials." class="wp-image-21699" srcset="https://www.osradar.com/wp-content/uploads/2020/07/wiki8-1-1024x787.png 1024w, https://www.osradar.com/wp-content/uploads/2020/07/wiki8-1-300x231.png 300w, https://www.osradar.com/wp-content/uploads/2020/07/wiki8-1-768x590.png 768w, https://www.osradar.com/wp-content/uploads/2020/07/wiki8-1-696x535.png 696w, https://www.osradar.com/wp-content/uploads/2020/07/wiki8-1-1068x821.png 1068w, https://www.osradar.com/wp-content/uploads/2020/07/wiki8-1-80x60.png 80w, https://www.osradar.com/wp-content/uploads/2020/07/wiki8-1.png 1280w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption><em>Please set the name of the wiki and the project. Also, assign the administrator credentials.</em></figcaption></figure>



<p>Finally, confirm the options to start the installation process.</p>



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



<p>After a few moments, the installation will be completed. Please click on Continue.</p>



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



<p>After the installation is completed, the wizard will generate the file <strong>LocalSettings.php</strong>. Also, the download will start automatically. If not, a link is provided to force the download.</p>



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



<p>After downloading the file, it is time to place it in the root of the installation. That is to say, in the directory where the file <strong>index.php</strong></p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="787" src="//1723336065.rsc.cdn77.org/wp-content/uploads/2020/07/wiki12-1024x787.png" alt="Please move the file to the root directory of the wiki." class="wp-image-21703" srcset="https://www.osradar.com/wp-content/uploads/2020/07/wiki12-1024x787.png 1024w, https://www.osradar.com/wp-content/uploads/2020/07/wiki12-300x231.png 300w, https://www.osradar.com/wp-content/uploads/2020/07/wiki12-768x590.png 768w, https://www.osradar.com/wp-content/uploads/2020/07/wiki12-696x535.png 696w, https://www.osradar.com/wp-content/uploads/2020/07/wiki12-1068x821.png 1068w, https://www.osradar.com/wp-content/uploads/2020/07/wiki12-80x60.png 80w, https://www.osradar.com/wp-content/uploads/2020/07/wiki12.png 1280w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>Please move the file to the root directory of the wiki.</figcaption></figure>



<p>Finally, we are ready to enter the wiki of our website.</p>



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



<h2>Conclusion</h2>



<p>Ultimately we have seen how to install a wiki in Windows 10. As you can see, it is a simple process to carry out. Which will also allow you to add this functionality to your website. I hope you enjoyed this post. Bye!</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-install-a-wiki-in-windows-10/">How to install a wiki 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-a-wiki-in-windows-10/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to install WPScan on Ubuntu 20.04/ 18.04?</title>
		<link>https://www.osradar.com/install-wpscan-on-ubuntu-20-04-18-04/</link>
					<comments>https://www.osradar.com/install-wpscan-on-ubuntu-20-04-18-04/#comments</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Mon, 22 Jun 2020 16:11:00 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Unix]]></category>
		<category><![CDATA[bionic]]></category>
		<category><![CDATA[Hacker]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[monitoring]]></category>
		<category><![CDATA[scan]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[wordpress]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=11752</guid>

					<description><![CDATA[<p>Security is something that all of us must care about quite a bit. Especially if we have a web site that we manage. And although it is true that, the security aspects of the various applications of a server have been greatly improved, it is also true that cyber thieves have also improved. In this [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-wpscan-on-ubuntu-20-04-18-04/">How to install WPScan on Ubuntu 20.04/ 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>Security is something that all of us must care about quite a bit. Especially if we have a web site that we manage. And although it is true that, the security aspects of the various applications of a server have been greatly improved, it is also true that cyber thieves have also improved. In this sense, WordPress is one of the most popular CMS that exist today, is very well designed making it a safe option. However, it is convenient that we use tools to verify the possible vulnerabilities that our site may have built with WordPress. Therefore, I will teach you how to install WPScan on Ubuntu 20.04 / 18.04 so that you can use it and make a study on a website made with WordPress and thus know and improve the vulnerabilities.</p>
<p>According to its <a href="https://wpscan.org/">website</a>, WPScan is a free, for non-commercial use, black box WordPress vulnerability scanner. It is written for security professionals and blog maintainers to test the security of their sites. Normally, WPScan comes pre-installed on operating systems specifically geared towards security audits.</p>
<p>Of course, this tool is Open Source so we can examine its source code to learn more. In addition, it is possible to access more information about it on <a href="https://github.com/wpscanteam/wpscan">its Github site</a>. The requirements are <a href="https://www.osradar.com/install-ruby-debian-10/">Ruby</a>, <a href="https://www.osradar.com/introduction-to-the-git-branches/">Git</a>, <a href="https://www.osradar.com/how-to-use-curl-command-linux/">Curl</a>, and RubyGems.</p>
<p>So let&#8217;s install WPScan on Ubuntu 20.04/ 18.04.</p>
<h2>Update the System</h2>
<p>The first step is to update the system. So open a terminal and run the following command.</p>
<pre>:~$ sudo apt update &amp;&amp; sudo apt upgrade -y</pre>
<p><figure id="attachment_11754" aria-describedby="caption-attachment-11754" style="width: 1365px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-11754" src="https://www.osradar.com/wp-content/uploads/2019/04/1-3.png" alt="1.- Upgrade the system" width="1365" height="510" srcset="https://www.osradar.com/wp-content/uploads/2019/04/1-3.png 1365w, https://www.osradar.com/wp-content/uploads/2019/04/1-3-300x112.png 300w, https://www.osradar.com/wp-content/uploads/2019/04/1-3-768x287.png 768w, https://www.osradar.com/wp-content/uploads/2019/04/1-3-1024x383.png 1024w, https://www.osradar.com/wp-content/uploads/2019/04/1-3-696x260.png 696w, https://www.osradar.com/wp-content/uploads/2019/04/1-3-1068x399.png 1068w, https://www.osradar.com/wp-content/uploads/2019/04/1-3-1124x420.png 1124w" sizes="(max-width: 1365px) 100vw, 1365px" /><figcaption id="caption-attachment-11754" class="wp-caption-text">1.- Upgrade the system</figcaption></figure></p>
<p>Once the system has finished installing the security patches, you will have a more stable and robust system.</p>
<h2>Install some required packages</h2>
<p>The next step to install WPScan on Ubuntu 20.04 / 18.04, is to get some packages that are necessary for the installation. Some of them are libraries and others are applications as such.</p>
<pre>:~$ sudo apt install curl git libcurl4-openssl-dev make zlib1g-dev gawk g++ gcc libreadline6-dev libssl-dev libyaml-dev libsqlite3-dev sqlite3 autoconf libgdbm-dev libncurses5-dev automake libtool bison pkg-config ruby ruby-bundler ruby-dev</pre>
<p><figure id="attachment_11755" aria-describedby="caption-attachment-11755" style="width: 1365px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-11755" src="https://www.osradar.com/wp-content/uploads/2019/04/2-3.png" alt="2.- Install the required packages" width="1365" height="652" srcset="https://www.osradar.com/wp-content/uploads/2019/04/2-3.png 1365w, https://www.osradar.com/wp-content/uploads/2019/04/2-3-300x143.png 300w, https://www.osradar.com/wp-content/uploads/2019/04/2-3-768x367.png 768w, https://www.osradar.com/wp-content/uploads/2019/04/2-3-1024x489.png 1024w, https://www.osradar.com/wp-content/uploads/2019/04/2-3-696x332.png 696w, https://www.osradar.com/wp-content/uploads/2019/04/2-3-1068x510.png 1068w, https://www.osradar.com/wp-content/uploads/2019/04/2-3-879x420.png 879w" sizes="(max-width: 1365px) 100vw, 1365px" /><figcaption id="caption-attachment-11755" class="wp-caption-text">2.- Install the required packages</figcaption></figure></p>
<p>So, you can now install WPScan.</p>
<h2>Install WPScan on Ubuntu 20.04 / 18.04</h2>
<p>Now you start the installation process. For this, you will use RubyGems.</p>
<pre>:~$ sudo gem install wpscan</pre>
<p><figure id="attachment_11756" aria-describedby="caption-attachment-11756" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="wp-image-11756 size-full" src="https://www.osradar.com/wp-content/uploads/2019/04/3-3.png" alt="3.- Install WPScan on Ubuntu 20.04 / 18.04" width="1366" height="768" srcset="https://www.osradar.com/wp-content/uploads/2019/04/3-3.png 1366w, https://www.osradar.com/wp-content/uploads/2019/04/3-3-300x169.png 300w, https://www.osradar.com/wp-content/uploads/2019/04/3-3-768x432.png 768w, https://www.osradar.com/wp-content/uploads/2019/04/3-3-1024x576.png 1024w, https://www.osradar.com/wp-content/uploads/2019/04/3-3-696x391.png 696w, https://www.osradar.com/wp-content/uploads/2019/04/3-3-1068x600.png 1068w, https://www.osradar.com/wp-content/uploads/2019/04/3-3-747x420.png 747w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-11756" class="wp-caption-text">3.- Install WPScan on Ubuntu 20.04 / 18.04</figcaption></figure></p>
<p>So, that&#8217;s it.</p>
<h2>Basic usage of WPScan</h2>
<p>Using WPScan is quite simple. To make a scan on a website, the following command is enough:</p>
<pre>:~$ wpscan --url [url]</pre>
<p>It is also possible to add some extra options through text files. These are the files:</p>
<ul>
<li>~/.wpscan/cli_options.json</li>
<li>~/.wpscan/cli_options.yml</li>
</ul>
<p>And to know in depth the use of the command, it is advisable to read its help from the terminal:</p>
<pre>:~$ wpscan --help</pre>
<p><figure id="attachment_11757" aria-describedby="caption-attachment-11757" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-11757" src="https://www.osradar.com/wp-content/uploads/2019/04/4-2.png" alt="4.- WPScan help" width="1366" height="768" srcset="https://www.osradar.com/wp-content/uploads/2019/04/4-2.png 1366w, https://www.osradar.com/wp-content/uploads/2019/04/4-2-300x169.png 300w, https://www.osradar.com/wp-content/uploads/2019/04/4-2-768x432.png 768w, https://www.osradar.com/wp-content/uploads/2019/04/4-2-1024x576.png 1024w, https://www.osradar.com/wp-content/uploads/2019/04/4-2-696x391.png 696w, https://www.osradar.com/wp-content/uploads/2019/04/4-2-1068x600.png 1068w, https://www.osradar.com/wp-content/uploads/2019/04/4-2-747x420.png 747w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-11757" class="wp-caption-text">4.- WPScan help</figcaption></figure></p>
<p>So, enjoy it.</p>
<h2>Conclusion</h2>
<p>WPScan is an important tool in the security of websites built with WordPress. Its basic use is within everyone&#8217;s reach, but the information it shows is very complete. So it&#8217;s something you should always keep in mind.</p>
<p>Please share this post with your friends and join <a href="https://t.me/osradar" target="_blank" rel="noopener noreferrer">our Telegram Channel</a>.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-wpscan-on-ubuntu-20-04-18-04/">How to install WPScan on Ubuntu 20.04/ 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-wpscan-on-ubuntu-20-04-18-04/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>How to install WordPress with Nginx on Ubuntu 20.04?</title>
		<link>https://www.osradar.com/install-wordpress-with-nginx-ubuntu-20-04/</link>
					<comments>https://www.osradar.com/install-wordpress-with-nginx-ubuntu-20-04/#comments</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Sun, 24 May 2020 23:11:00 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[focal]]></category>
		<category><![CDATA[Focal Fossa]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[Nginx]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[wordpress]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=20541</guid>

					<description><![CDATA[<p>Hi, folks. In this post, we will help you install WordPress with Nginx on Ubuntu 20.04. It&#8217;s a lot easier than you think. So let&#8217;s go for it. What is WordPress? WordPress is a CMS (content manager system) that is to say it is an application that allows you to create a blog of information. [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-wordpress-with-nginx-ubuntu-20-04/">How to install WordPress with Nginx on Ubuntu 20.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>Hi, folks. In this post, we will help you install WordPress with Nginx on Ubuntu 20.04. It&#8217;s a lot easier than you think. So let&#8217;s go for it.</p>



<h2>What is WordPress?</h2>



<p><a href="http://wordpress.com/">WordPress</a> is a CMS (content manager system) that is to say it is an application that allows you to create a blog of information. However, over time has evolved and not only provides services to create blogs but corporate websites or what you can imagine.</p>



<p>Thanks to WordPress and <a href="https://www.osradar.com/tag/cms/">CMS</a>, publish news and entries, do not require knowledge of HTML or <a href="https://www.osradar.com/tag/php/">PHP</a>, but everything is visual.</p>



<p>So, if you want to have a personal blog or for educational purposes, WordPress is a pretty good solution.</p>



<h2>Install WordPress with Nginx on Ubuntu 20.04</h2>



<h3>1.- Install LEMP on Ubuntu 20.04</h3>



<p>WordPress is an application created with PHP. That is, we need a server like <a href="https://www.osradar.com/how-to-install-wordpress-ubuntu-20-04/" target="_blank" rel="noreferrer noopener">Apache</a> or Nginx. In this post, we will choose the last one.</p>



<p>So, installing LEMP is the first step to do. You can read about it.</p>



<p><a href="https://www.osradar.com/install-lemp-on-ubuntu-20-04/" target="_blank" rel="noreferrer noopener">How to install LEMP on Ubuntu 20.04?</a></p>



<p>It is also important that you install these PHP modules:</p>



<pre class="wp-block-preformatted">php7.4-common php7.4-mbstring php7.4-xmlrpc php7.4-soap php7.4-gd php7.4-xml php7.4-intl php7.4-mysql php7.4-cli php7.4-ldap php7.4-zip php7.4-curl php-fpm</pre>



<p>And now you can continue.</p>



<h3>2.- Configuring MariaDB</h3>



<p>WordPress requires a relational database manager like MariaDB. So the most convenient thing is to create a new database for WordPress.</p>



<p>So, access the MariaDB shell:</p>



<pre class="wp-block-preformatted">:~$ sudo mysql -u root -p</pre>



<p>Now create the new database:</p>



<pre class="wp-block-preformatted">&gt; CREATE DATABASE wordpress;</pre>



<p>Then create and assign permissions to a new user dedicated to WordPress. This will avoid working with the root user.</p>



<pre class="wp-block-preformatted">&gt; GRANT ALL PRIVILEGES on wordpress.* TO 'wordpress_user'@'localhost' IDENTIFIED BY 'wordpress_pss123';
&gt; FLUSH PRIVILEGES;</pre>



<p>Finally get out of MariaDB&#8217;s console.</p>



<pre class="wp-block-preformatted">&gt; exit;</pre>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="364" src="https://www.osradar.com/wp-content/uploads/2020/05/1-16-1024x364.png" alt="1.-  Creating a new Database for WordPress" class="wp-image-20543" srcset="https://www.osradar.com/wp-content/uploads/2020/05/1-16-1024x364.png 1024w, https://www.osradar.com/wp-content/uploads/2020/05/1-16-300x107.png 300w, https://www.osradar.com/wp-content/uploads/2020/05/1-16-768x273.png 768w, https://www.osradar.com/wp-content/uploads/2020/05/1-16-696x247.png 696w, https://www.osradar.com/wp-content/uploads/2020/05/1-16-1068x380.png 1068w, https://www.osradar.com/wp-content/uploads/2020/05/1-16.png 1111w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>1.-  Creating a new Database for WordPress</figcaption></figure>



<p>Now let&#8217;s continue.</p>



<h3>3.- Downloading WordPress</h3>



<p>Now we can get started with the WordPress download. To do this, we will do it from the <code>/tmp/</code> folder and using the <a href="https://www.osradar.com/the-wget-command/" target="_blank" rel="noreferrer noopener">wget</a> command.</p>



<pre class="wp-block-preformatted">:~$ cd /tmp/
:~$ wget -c https://wordpress.org/latest.tar.gz
--2020-04-30 15:41:25-- https://wordpress.org/latest.tar.gz
Resolving wordpress.org (wordpress.org)… 198.143.164.252
Connecting to wordpress.org (wordpress.org)|198.143.164.252|:443… connected.
HTTP request sent, awaiting response… 200 OK
Length: 12234700 (12M) [application/octet-stream]
Saving to: ‘latest.tar.gz’
latest.tar.gz 100%[=====================================================================================&gt;] 11.67M 77.0KB/s in 67s
2020-04-30 15:42:34 (178 KB/s) - ‘latest.tar.gz’ saved [12234700/12234700]</pre>



<p>Once you have downloaded the file. Decompress it.</p>



<pre class="wp-block-preformatted">:~$ tar -xvzf latest.tar.gz</pre>



<p>Then, move it to Nginx&#8217;s root directory, assign the correct permissions to the folder and make Nginx the owner of it.</p>



<pre class="wp-block-preformatted">:~$ sudo mv wordpress/ /var/www/html/<br>:~$ sudo chown -R www-data:www-data /var/www/html/wordpress/<br>:~$ sudo chmod 755 -R /var/www/html/wordpress/</pre>



<p>Next, we need to make a new Nginx Server Block for WordPress. To do this, create a new file in <code>/etc/nginx/sites-available/</code> called <code>wordpress.conf</code></p>



<pre class="wp-block-preformatted">:~$ sudo nano /etc/nginx/sites-available/wordpress.conf</pre>



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



<pre class="wp-block-preformatted">server {
listen 80;
server_name blog.osradar.test;
root /var/www/html/wordpress;
index index.php;
location / {
try_files $uri $uri/ /index.php$is_args$args;
}
location ~ .php$ {
fastcgi_pass unix:/var/run/php/php7.4-fpm.sock;
fastcgi_index index.php;
include /etc/nginx/fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
fastcgi_param SERVER_NAME $host;
}
location ~ /files{
deny all;
}
}</pre>



<figure class="wp-block-image size-large"><img loading="lazy" width="973" height="387" src="https://www.osradar.com/wp-content/uploads/2020/05/2-20.png" alt="2.- Nginx server block for WordPress" class="wp-image-20546" srcset="https://www.osradar.com/wp-content/uploads/2020/05/2-20.png 973w, https://www.osradar.com/wp-content/uploads/2020/05/2-20-300x119.png 300w, https://www.osradar.com/wp-content/uploads/2020/05/2-20-768x305.png 768w, https://www.osradar.com/wp-content/uploads/2020/05/2-20-696x277.png 696w" sizes="(max-width: 973px) 100vw, 973px" /><figcaption>2.- Nginx server block for WordPress</figcaption></figure>



<p>Of course, replace “your-domain” with yours. Save the changes and close the file.</p>



<p>Next, restart Nginx to enable the new server Block.</p>



<pre class="wp-block-preformatted">:~$ sudo systemctl restart nginx</pre>



<p>So, you need to complete the installation using the web interface.</p>



<h3>4.- Install WordPress with Nginx on Ubuntu 20.04</h3>



<p>Now it is necessary to complete the installation of WordPress and for that there is the installation wizard.</p>



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



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="506" src="https://www.osradar.com/wp-content/uploads/2020/05/3-17-1024x506.png" alt="3.- Installing WordPress with Nginx on Ubuntu 20.04" class="wp-image-20547" srcset="https://www.osradar.com/wp-content/uploads/2020/05/3-17-1024x506.png 1024w, https://www.osradar.com/wp-content/uploads/2020/05/3-17-300x148.png 300w, https://www.osradar.com/wp-content/uploads/2020/05/3-17-768x379.png 768w, https://www.osradar.com/wp-content/uploads/2020/05/3-17-696x344.png 696w, https://www.osradar.com/wp-content/uploads/2020/05/3-17-1068x528.png 1068w, https://www.osradar.com/wp-content/uploads/2020/05/3-17.png 1354w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>3.- Installing WordPress with Nginx on Ubuntu 20.04</figcaption></figure>



<p>Once you have chosen the language of your preference. Continue the installation.</p>



<p>On the next screen, you will be informed that some information is needed from your database.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="502" src="https://www.osradar.com/wp-content/uploads/2020/05/4-14-1024x502.png" alt="4.- WordPress installation" class="wp-image-20548" srcset="https://www.osradar.com/wp-content/uploads/2020/05/4-14-1024x502.png 1024w, https://www.osradar.com/wp-content/uploads/2020/05/4-14-300x147.png 300w, https://www.osradar.com/wp-content/uploads/2020/05/4-14-768x376.png 768w, https://www.osradar.com/wp-content/uploads/2020/05/4-14-696x341.png 696w, https://www.osradar.com/wp-content/uploads/2020/05/4-14-1068x523.png 1068w, https://www.osradar.com/wp-content/uploads/2020/05/4-14.png 1366w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>4.- WordPress installation</figcaption></figure>



<p>Then, enter the credentials from the database we created earlier.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="458" src="https://www.osradar.com/wp-content/uploads/2020/05/5-9-1024x458.png" alt="5.- WordPress database credentials" class="wp-image-20549" srcset="https://www.osradar.com/wp-content/uploads/2020/05/5-9-1024x458.png 1024w, https://www.osradar.com/wp-content/uploads/2020/05/5-9-300x134.png 300w, https://www.osradar.com/wp-content/uploads/2020/05/5-9-768x343.png 768w, https://www.osradar.com/wp-content/uploads/2020/05/5-9-696x311.png 696w, https://www.osradar.com/wp-content/uploads/2020/05/5-9-1068x478.png 1068w, https://www.osradar.com/wp-content/uploads/2020/05/5-9.png 1326w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>5.- WordPress database credentials</figcaption></figure>



<p>Then, start the installation.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="502" src="https://www.osradar.com/wp-content/uploads/2020/05/6-8-1024x502.png" alt="6.- Make the installation" class="wp-image-20557" srcset="https://www.osradar.com/wp-content/uploads/2020/05/6-8-1024x502.png 1024w, https://www.osradar.com/wp-content/uploads/2020/05/6-8-300x147.png 300w, https://www.osradar.com/wp-content/uploads/2020/05/6-8-768x376.png 768w, https://www.osradar.com/wp-content/uploads/2020/05/6-8-696x341.png 696w, https://www.osradar.com/wp-content/uploads/2020/05/6-8-1068x523.png 1068w, https://www.osradar.com/wp-content/uploads/2020/05/6-8.png 1366w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>6.- Make the installation</figcaption></figure>



<p>If everything went well, you will have to enter the information of the website you are creating. As well as the creation of the administrator account.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="506" src="https://www.osradar.com/wp-content/uploads/2020/05/7-7-1024x506.png" alt="7.- Site information and admin account" class="wp-image-20558" srcset="https://www.osradar.com/wp-content/uploads/2020/05/7-7-1024x506.png 1024w, https://www.osradar.com/wp-content/uploads/2020/05/7-7-300x148.png 300w, https://www.osradar.com/wp-content/uploads/2020/05/7-7-768x379.png 768w, https://www.osradar.com/wp-content/uploads/2020/05/7-7-696x344.png 696w, https://www.osradar.com/wp-content/uploads/2020/05/7-7-1068x528.png 1068w, https://www.osradar.com/wp-content/uploads/2020/05/7-7.png 1354w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>7.- Site information and admin account</figcaption></figure>



<p>In the end, you will see that everything has been a success and you can log in.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="502" src="https://www.osradar.com/wp-content/uploads/2020/05/8-4-1024x502.png" alt="8.- WordPress with Nginx installed" class="wp-image-20552" srcset="https://www.osradar.com/wp-content/uploads/2020/05/8-4-1024x502.png 1024w, https://www.osradar.com/wp-content/uploads/2020/05/8-4-300x147.png 300w, https://www.osradar.com/wp-content/uploads/2020/05/8-4-768x376.png 768w, https://www.osradar.com/wp-content/uploads/2020/05/8-4-696x341.png 696w, https://www.osradar.com/wp-content/uploads/2020/05/8-4-1068x523.png 1068w, https://www.osradar.com/wp-content/uploads/2020/05/8-4.png 1366w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>8.- WordPress with Nginx installed</figcaption></figure>



<p>Then, you will see the Log in screen.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="502" src="https://www.osradar.com/wp-content/uploads/2020/05/9-4-1024x502.png" alt="9.- WordPress login screen" class="wp-image-20553" srcset="https://www.osradar.com/wp-content/uploads/2020/05/9-4-1024x502.png 1024w, https://www.osradar.com/wp-content/uploads/2020/05/9-4-300x147.png 300w, https://www.osradar.com/wp-content/uploads/2020/05/9-4-768x376.png 768w, https://www.osradar.com/wp-content/uploads/2020/05/9-4-696x341.png 696w, https://www.osradar.com/wp-content/uploads/2020/05/9-4-1068x523.png 1068w, https://www.osradar.com/wp-content/uploads/2020/05/9-4.png 1366w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>9.- WordPress login screen</figcaption></figure>



<p>When you log in you will see the dashboard. </p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="506" src="https://www.osradar.com/wp-content/uploads/2020/05/10-2-1024x506.png" alt="10.- WordPress with Nginx on Ubuntu 20.04" class="wp-image-20554" srcset="https://www.osradar.com/wp-content/uploads/2020/05/10-2-1024x506.png 1024w, https://www.osradar.com/wp-content/uploads/2020/05/10-2-300x148.png 300w, https://www.osradar.com/wp-content/uploads/2020/05/10-2-768x379.png 768w, https://www.osradar.com/wp-content/uploads/2020/05/10-2-696x344.png 696w, https://www.osradar.com/wp-content/uploads/2020/05/10-2-1068x528.png 1068w, https://www.osradar.com/wp-content/uploads/2020/05/10-2.png 1354w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>10.- WordPress with Nginx on Ubuntu 20.04</figcaption></figure>



<p>And that&#8217;s it. WordPress is installed correctly.</p>



<h2>Conclusion</h2>



<p>WordPress is a fairly popular CMS. Thanks to this application, you can create your website in a short time and without great knowledge of HTML. Also, in this post, you have seen that installing it is not too complicated for the great advantages it provides.</p>



<p>Please share this post with your friends and join <a href="http://t.me/osradar">our Telegram channel</a>.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-wordpress-with-nginx-ubuntu-20-04/">How to install WordPress with Nginx on Ubuntu 20.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-wordpress-with-nginx-ubuntu-20-04/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>How to install WordPress on Ubuntu 20.04?</title>
		<link>https://www.osradar.com/how-to-install-wordpress-ubuntu-20-04/</link>
					<comments>https://www.osradar.com/how-to-install-wordpress-ubuntu-20-04/#comments</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Sun, 03 May 2020 23:11:00 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[focal]]></category>
		<category><![CDATA[Focal Fossa]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[wordpress]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=19903</guid>

					<description><![CDATA[<p>In today’s world, everything is Internet and information sites. There is too much variety in them. But we also find a lot of variety of applications that allow us to make websites. In this way, we find a nice CMS competition. That is to say, web applications that allow creating a blog without much effort. [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-install-wordpress-ubuntu-20-04/">How to install WordPress on Ubuntu 20.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>In today’s world, everything is Internet and information sites. There is too much variety in them. But we also find a lot of variety of applications that allow us to make websites. In this way, we find a nice CMS competition. That is to say, web applications that allow creating a blog without much effort. Of all these, <strong>WordPress is the most popular</strong> and solvent of all. That’s why, in this post, you will learn how to install WordPress on Ubuntu 20.04.</p>
<h2 class="western">What is WordPress?</h2>
<p>There are many blogs and information sites on the Internet. And many times we think &#8220;wow, that&#8217;s nice, how did they do that?&#8221; and immediately we think of the many skills you need to have to do something like that. This is partly true because there was a developer who created the theme you see, but it is also true that the creation of the site is probably done with a CMS. Within these CMS WordPress stands out as one of the best and most complete.</p>
<p><a href="http://wordpress.com/">WordPress</a> is a CMS (content manager system) that is to say it is an application that allows you to create a blog of information. However, over time has evolved and not only provides services to create blogs but corporate websites or what you can imagine.</p>
<p>Thanks to WordPress and <a href="https://www.osradar.com/tag/cms/">CMS</a>, publish news and entries, do not require knowledge of HTML or <a href="https://www.osradar.com/tag/php/">PHP</a>, but everything is visual.</p>
<p>So, if you want to have a personal blog or for educational purposes, WordPress is a pretty good solution.</p>
<h2 class="western">Install WordPress on Ubuntu 20.04</h2>
<h3 class="western">Install LAMP stack on Ubuntu 20.04</h3>
<p>Since it is created with PHP, WordPress requires a web server that can interpret it as well as a relational database manager like MariaDB. So, we are talking about a LAMP stack.</p>
<p><a href="https://www.osradar.com/install-lamp-ubuntu-20-04/" target="_blank" rel="noopener noreferrer">How to install LAMP on Ubuntu 20.04?</a></p>
<p>It is also important to say that, WordPress also works with other web servers like Nginx or Lighttpd.</p>
<p>It also requires certain PHP modules like these:</p>
<p>Once you have completed this first part of the tutorial, you can continue.</p>
<pre>libapache2-mod-php7.4 php7.4-common php7.4-mbstring php7.4-xmlrpc php7.4-soap php7.4-gd php7.4-xml php7.4-intl php7.4-mysql php7.4-cli php7.4-ldap php7.4-zip php7.4-curl</pre>
<h3 class="western">Install MariaDB on Ubuntu 20.04</h3>
<p>Once MariaDB is successfully installed, a new database must be created for WordPress.</p>
<p>It is also important to create a new user who has permissions on that database. In this way, we will avoid working and using the root user. This would be an important security breach.</p>
<p>So, open the MariaDB console:</p>
<pre>:~$ sudo mysql -u root -p</pre>
<p>And it creates the new database and the user along with their permissions:</p>
<pre>&gt; CREATE DATABASE wordpress;
&gt; GRANT ALL PRIVILEGES on wordpress.* TO 'wordpress_user'@'localhost' IDENTIFIED BY 'wordpress_pss123';
&gt; FLUSH PRIVILEGES;
&gt; EXIT;</pre>
<p><figure id="attachment_20078" aria-describedby="caption-attachment-20078" style="width: 1111px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-20078" src="https://www.osradar.com/wp-content/uploads/2020/04/1-25.png" alt="1.- Creating the database for wordpress" width="1111" height="395" srcset="https://www.osradar.com/wp-content/uploads/2020/04/1-25.png 1111w, https://www.osradar.com/wp-content/uploads/2020/04/1-25-300x107.png 300w, https://www.osradar.com/wp-content/uploads/2020/04/1-25-1024x364.png 1024w, https://www.osradar.com/wp-content/uploads/2020/04/1-25-768x273.png 768w, https://www.osradar.com/wp-content/uploads/2020/04/1-25-696x247.png 696w, https://www.osradar.com/wp-content/uploads/2020/04/1-25-1068x380.png 1068w" sizes="(max-width: 1111px) 100vw, 1111px" /><figcaption id="caption-attachment-20078" class="wp-caption-text">1.- Creating the database for wordpress</figcaption></figure></p>
<p>Now MariaDB is ready for wordpress.</p>
<h3 class="western">Download and install WordPress on Ubuntu 20.04</h3>
<p>Now it is time to download WordPress. To do this, I recommend you do it from the tmp folder.</p>
<pre>:~$ cd /tmp/</pre>
<p>And using <a href="https://www.osradar.com/the-wget-command/" target="_blank" rel="noopener noreferrer">wget</a> it performs the download:</p>
<pre>:~$ wget -c https://wordpress.org/latest.tar.gz</pre>
<p><figure id="attachment_20079" aria-describedby="caption-attachment-20079" style="width: 1365px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-20079" src="https://www.osradar.com/wp-content/uploads/2020/05/2-2.png" alt="2.- Download WordPress on Ubuntu 20.04" width="1365" height="284" srcset="https://www.osradar.com/wp-content/uploads/2020/05/2-2.png 1365w, https://www.osradar.com/wp-content/uploads/2020/05/2-2-300x62.png 300w, https://www.osradar.com/wp-content/uploads/2020/05/2-2-1024x213.png 1024w, https://www.osradar.com/wp-content/uploads/2020/05/2-2-768x160.png 768w, https://www.osradar.com/wp-content/uploads/2020/05/2-2-696x145.png 696w, https://www.osradar.com/wp-content/uploads/2020/05/2-2-1068x222.png 1068w" sizes="(max-width: 1365px) 100vw, 1365px" /><figcaption id="caption-attachment-20079" class="wp-caption-text">2.- Download WordPress on Ubuntu 20.04</figcaption></figure></p>
<p>Then, decompress the generated file and move it to the Apache root folder on Ubuntu 20.04.</p>
<pre>:~$ tar -xvzf latest.tar.gz
:~$ sudo mv wordpress/ /var/www/html/</pre>
<p>Then, assign the corresponding permissions as well as change the owner of the folder to <code>www-data</code></p>
<pre>:~$ sudo chown -R www-data:www-data /var/www/html/wordpress/
:~$ sudo chmod 755 -R /var/www/html/wordpress/</pre>
<p>Now we have to make a new Virtualhost for WordPress.</p>
<pre>:~$ sudo nano /etc/apache2/sites-available/wordpress.conf</pre>
<p>And add the following content to set the rules that Apache will use with WordPress.</p>
<pre>&lt;VirtualHost *:80&gt;
    ServerAdmin admin@your_domain.com
    DocumentRoot /var/www/html/wordpress
    ServerName blog.osradar.test

    &lt;Directory /var/www/html/wordpress&gt;
         Options FollowSymlinks
         AllowOverride All
         Require all granted
    &lt;/Directory&gt;

ErrorLog ${APACHE_LOG_DIR}/your-domain.com_error.log
CustomLog ${APACHE_LOG_DIR}/your-domain.com_access.log combined
&lt;/VirtualHost&gt;</pre>
<p><figure id="attachment_20080" aria-describedby="caption-attachment-20080" style="width: 1099px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-20080" src="https://www.osradar.com/wp-content/uploads/2020/05/3-2.png" alt="3.- Virtuahost for WordPress" width="1099" height="317" srcset="https://www.osradar.com/wp-content/uploads/2020/05/3-2.png 1099w, https://www.osradar.com/wp-content/uploads/2020/05/3-2-300x87.png 300w, https://www.osradar.com/wp-content/uploads/2020/05/3-2-1024x295.png 1024w, https://www.osradar.com/wp-content/uploads/2020/05/3-2-768x222.png 768w, https://www.osradar.com/wp-content/uploads/2020/05/3-2-696x201.png 696w, https://www.osradar.com/wp-content/uploads/2020/05/3-2-1068x308.png 1068w" sizes="(max-width: 1099px) 100vw, 1099px" /><figcaption id="caption-attachment-20080" class="wp-caption-text">3.- Virtuahost for WordPress</figcaption></figure></p>
<p>Of course, change <code>blog.osradar.test</code> and <code>your-domain</code> for yours. It&#8217;s just an example. Then, save the changes and close the file.</p>
<p>To enable the new Virtualhost, run the following command:</p>
<pre>:~$ sudo ln -s /etc/apache2/sites-available/wordpress.conf /etc/apache2/sites-enabled/wordpress.conf</pre>
<p>Then, enable Apache&#8217;s rewrite module.</p>
<pre>:~$ sudo a2enmod rewrite</pre>
<p>And to implement all these changes, all you have to do is restart Apache.</p>
<pre>:~$ sudo systemctl restart apache2</pre>
<p>Now, we have to complete the installation.</p>
<h3 class="western">Install WordPress on Ubuntu 20.04</h3>
<p>Then open your web browser and go to <code>http://your-domain</code> and you will see the following screen:</p>
<p><figure id="attachment_20081" aria-describedby="caption-attachment-20081" style="width: 1354px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-20081" src="https://www.osradar.com/wp-content/uploads/2020/05/4-1.png" alt="4.- WordPress initial screen" width="1354" height="669" srcset="https://www.osradar.com/wp-content/uploads/2020/05/4-1.png 1354w, https://www.osradar.com/wp-content/uploads/2020/05/4-1-300x148.png 300w, https://www.osradar.com/wp-content/uploads/2020/05/4-1-1024x506.png 1024w, https://www.osradar.com/wp-content/uploads/2020/05/4-1-768x379.png 768w, https://www.osradar.com/wp-content/uploads/2020/05/4-1-696x344.png 696w, https://www.osradar.com/wp-content/uploads/2020/05/4-1-1068x528.png 1068w" sizes="(max-width: 1354px) 100vw, 1354px" /><figcaption id="caption-attachment-20081" class="wp-caption-text">4.- WordPress initial screen</figcaption></figure></p>
<p>In it, you have to choose the installation language. WordPress supports many, so you should have no problem finding yours.</p>
<p>Then, configure the parameters of the database we have created.</p>
<p><figure id="attachment_20082" aria-describedby="caption-attachment-20082" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-20082" src="https://www.osradar.com/wp-content/uploads/2020/05/5-1.png" alt="5.- Database credentials to install WordPress on Ubuntu 20.04" width="1366" height="669" srcset="https://www.osradar.com/wp-content/uploads/2020/05/5-1.png 1366w, https://www.osradar.com/wp-content/uploads/2020/05/5-1-300x147.png 300w, https://www.osradar.com/wp-content/uploads/2020/05/5-1-1024x502.png 1024w, https://www.osradar.com/wp-content/uploads/2020/05/5-1-768x376.png 768w, https://www.osradar.com/wp-content/uploads/2020/05/5-1-696x341.png 696w, https://www.osradar.com/wp-content/uploads/2020/05/5-1-1068x523.png 1068w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-20082" class="wp-caption-text">5.- Database credentials to install WordPress on Ubuntu 20.04</figcaption></figure></p>
<p>If the installer manages to connect to the database, you will be informed that you are ready to start the installation.</p>
<p><figure id="attachment_20083" aria-describedby="caption-attachment-20083" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-20083" src="https://www.osradar.com/wp-content/uploads/2020/05/6-1.png" alt="6.- WordPress ready to be installed" width="1366" height="669" srcset="https://www.osradar.com/wp-content/uploads/2020/05/6-1.png 1366w, https://www.osradar.com/wp-content/uploads/2020/05/6-1-300x147.png 300w, https://www.osradar.com/wp-content/uploads/2020/05/6-1-1024x502.png 1024w, https://www.osradar.com/wp-content/uploads/2020/05/6-1-768x376.png 768w, https://www.osradar.com/wp-content/uploads/2020/05/6-1-696x341.png 696w, https://www.osradar.com/wp-content/uploads/2020/05/6-1-1068x523.png 1068w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-20083" class="wp-caption-text">6.- WordPress ready to be installed</figcaption></figure></p>
<p>Then, add information about your new site. As well as create the new WordPress Admin account.</p>
<p><figure id="attachment_20084" aria-describedby="caption-attachment-20084" style="width: 1354px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-20084" src="https://www.osradar.com/wp-content/uploads/2020/05/7-1.png" alt="7.- Creating the new WordPress site" width="1354" height="668" srcset="https://www.osradar.com/wp-content/uploads/2020/05/7-1.png 1354w, https://www.osradar.com/wp-content/uploads/2020/05/7-1-300x148.png 300w, https://www.osradar.com/wp-content/uploads/2020/05/7-1-1024x505.png 1024w, https://www.osradar.com/wp-content/uploads/2020/05/7-1-768x379.png 768w, https://www.osradar.com/wp-content/uploads/2020/05/7-1-696x343.png 696w, https://www.osradar.com/wp-content/uploads/2020/05/7-1-1068x527.png 1068w" sizes="(max-width: 1354px) 100vw, 1354px" /><figcaption id="caption-attachment-20084" class="wp-caption-text">7.- Creating the new WordPress site</figcaption></figure></p>
<p>In the end, if everything has gone well, you will be informed and then you can log in with your credentials.</p>
<p><figure id="attachment_20085" aria-describedby="caption-attachment-20085" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-20085" src="https://www.osradar.com/wp-content/uploads/2020/05/8.png" alt="8.- WordPress log in screen" width="1366" height="669" srcset="https://www.osradar.com/wp-content/uploads/2020/05/8.png 1366w, https://www.osradar.com/wp-content/uploads/2020/05/8-300x147.png 300w, https://www.osradar.com/wp-content/uploads/2020/05/8-1024x502.png 1024w, https://www.osradar.com/wp-content/uploads/2020/05/8-768x376.png 768w, https://www.osradar.com/wp-content/uploads/2020/05/8-696x341.png 696w, https://www.osradar.com/wp-content/uploads/2020/05/8-1068x523.png 1068w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-20085" class="wp-caption-text">8.- WordPress log in screen</figcaption></figure></p>
<p>Finally, you will see the WordPress dashboard and you can start the customization of your website.</p>
<p><figure id="attachment_20086" aria-describedby="caption-attachment-20086" style="width: 1354px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-20086" src="https://www.osradar.com/wp-content/uploads/2020/05/9.png" alt="9.- WordPress dashboard on Ubuntu 20.04" width="1354" height="669" srcset="https://www.osradar.com/wp-content/uploads/2020/05/9.png 1354w, https://www.osradar.com/wp-content/uploads/2020/05/9-300x148.png 300w, https://www.osradar.com/wp-content/uploads/2020/05/9-1024x506.png 1024w, https://www.osradar.com/wp-content/uploads/2020/05/9-768x379.png 768w, https://www.osradar.com/wp-content/uploads/2020/05/9-696x344.png 696w, https://www.osradar.com/wp-content/uploads/2020/05/9-1068x528.png 1068w" sizes="(max-width: 1354px) 100vw, 1354px" /><figcaption id="caption-attachment-20086" class="wp-caption-text">9.- WordPress dashboard on Ubuntu 20.04</figcaption></figure></p>
<h2 class="western">Conclusion</h2>
<p>WordPress is a fairly popular CMS. Thanks to this application, you can create your website in a short time and without great knowledge of HTML. Also, in this post, you have seen that installing it is not too complicated for the great advantages it provides.</p>
<p>Please share this post with your friends and join <a href="http://t.me/osradar">our Telegram channel</a>.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-install-wordpress-ubuntu-20-04/">How to install WordPress on Ubuntu 20.04?</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.osradar.com/how-to-install-wordpress-ubuntu-20-04/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>How to install WordPress 5.4 on Ubuntu 18.04 LTS?</title>
		<link>https://www.osradar.com/how-to-install-wordpress-on-ubuntu-18-04-lts/</link>
					<comments>https://www.osradar.com/how-to-install-wordpress-on-ubuntu-18-04-lts/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Sun, 12 Apr 2020 23:11:00 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Unix]]></category>
		<category><![CDATA[bionic]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[wordpress]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=7036</guid>

					<description><![CDATA[<p>Nowadays many people decide to create a blog to write about many topics. Some of these blogs are about technology or other topics. In this sense, WordPress is a very popular application for the creation of blogs. Therefore, this article is about how to install WordPress 5.6 on Ubuntu 18.04 LTS. For the creation of [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-install-wordpress-on-ubuntu-18-04-lts/">How to install WordPress 5.4 on Ubuntu 18.04 LTS?</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Nowadays many people decide to create a blog to write about many topics. Some of these blogs are about technology or other topics. In this sense, WordPress is a very popular application for the creation of blogs. Therefore, this article is about how to install WordPress 5.6 on Ubuntu 18.04 LTS.</p>
<p>For the creation of blogs there are several alternatives such as Blogger, however, it is not reckless to say that <a href="https://wordpress.com/" rel="noopener">WordPress</a> is the most popular and robust solution in its field.</p>
<p>This is because in WordPress you don&#8217;t need programming skills to build your website. On the other hand, it is open source which guarantees its growth and community support. It is also quite customizable and has extensive technical support.</p>
<p>In addition to WordPress, the creators of Blog choose Ubuntu 18.04 LTS to install all its content there, because it is a new and robust version of the most popular distribution in the world.</p>
<p>Let&#8217;s install WordPress 5.6 on Ubuntu 18.04 LTS.</p>
<h2>1. Upgrade the system</h2>
<p>Before you start installing WordPress you must make sure that the system is up to date. With this you will have the latest security patches and the system will be more reliable and stable. To do this, run the following command.</p>
<pre class="">:~$ sudo apt update &amp;&amp; sudo apt upgrade</pre>
<p><figure id="attachment_7037" aria-describedby="caption-attachment-7037" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-7037" src="https://www.osradar.com/wp-content/uploads/2018/11/1-5.png" alt="1.- Upgrade the system" width="1366" height="768" srcset="https://www.osradar.com/wp-content/uploads/2018/11/1-5.png 1366w, https://www.osradar.com/wp-content/uploads/2018/11/1-5-300x169.png 300w, https://www.osradar.com/wp-content/uploads/2018/11/1-5-768x432.png 768w, https://www.osradar.com/wp-content/uploads/2018/11/1-5-1024x576.png 1024w, https://www.osradar.com/wp-content/uploads/2018/11/1-5-696x391.png 696w, https://www.osradar.com/wp-content/uploads/2018/11/1-5-1068x600.png 1068w, https://www.osradar.com/wp-content/uploads/2018/11/1-5-747x420.png 747w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-7037" class="wp-caption-text">1.- Upgrade the system</figcaption></figure></p>
<p>It is always advisable to do this periodically.</p>
<h2>2. Install Apache web server</h2>
<p>WordPress itself is a web application. Therefore, you need a web server that allows its execution. There are several very good ones like <a href="https://www.osradar.com/how-to-configure-nginx-server-blocks-on-ubuntu-18-04/" rel="noopener">Ngnix</a> or <a href="https://www.osradar.com/how-to-configure-an-apache-virtual-host-on-debian-9/" rel="noopener">Apache web server</a>. I will use the last one.</p>
<pre class="">:~$ sudo apt install apache2</pre>
<p><figure id="attachment_7038" aria-describedby="caption-attachment-7038" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-7038" src="https://www.osradar.com/wp-content/uploads/2018/11/2-4.png" alt="2.- Installing apache web server" width="1366" height="768" srcset="https://www.osradar.com/wp-content/uploads/2018/11/2-4.png 1366w, https://www.osradar.com/wp-content/uploads/2018/11/2-4-300x169.png 300w, https://www.osradar.com/wp-content/uploads/2018/11/2-4-768x432.png 768w, https://www.osradar.com/wp-content/uploads/2018/11/2-4-1024x576.png 1024w, https://www.osradar.com/wp-content/uploads/2018/11/2-4-696x391.png 696w, https://www.osradar.com/wp-content/uploads/2018/11/2-4-1068x600.png 1068w, https://www.osradar.com/wp-content/uploads/2018/11/2-4-747x420.png 747w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-7038" class="wp-caption-text">2.- Installing the apache web server</figcaption></figure></p>
<p>Now, enable and start the Apache web server service.</p>
<pre class="">:~$ sudo systemctl enable apache2
:~$ sudo systemctl start apache2</pre>
<p><figure id="attachment_7039" aria-describedby="caption-attachment-7039" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-7039" src="https://www.osradar.com/wp-content/uploads/2018/11/3-3.png" alt="3.- Enabling the apache service" width="1366" height="768" srcset="https://www.osradar.com/wp-content/uploads/2018/11/3-3.png 1366w, https://www.osradar.com/wp-content/uploads/2018/11/3-3-300x169.png 300w, https://www.osradar.com/wp-content/uploads/2018/11/3-3-768x432.png 768w, https://www.osradar.com/wp-content/uploads/2018/11/3-3-1024x576.png 1024w, https://www.osradar.com/wp-content/uploads/2018/11/3-3-696x391.png 696w, https://www.osradar.com/wp-content/uploads/2018/11/3-3-1068x600.png 1068w, https://www.osradar.com/wp-content/uploads/2018/11/3-3-747x420.png 747w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-7039" class="wp-caption-text">3.- Enabling the apache service</figcaption></figure></p>
<p>The goal of this is to make apache boot when the system boots.</p>
<p>Now, open your web browser and go to <code>http://IP_SERVER</code></p>
<p><figure id="attachment_7040" aria-describedby="caption-attachment-7040" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-7040" src="https://www.osradar.com/wp-content/uploads/2018/11/4-4.png" alt="4.- Apache web srever default page" width="1366" height="666" srcset="https://www.osradar.com/wp-content/uploads/2018/11/4-4.png 1366w, https://www.osradar.com/wp-content/uploads/2018/11/4-4-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2018/11/4-4-768x374.png 768w, https://www.osradar.com/wp-content/uploads/2018/11/4-4-1024x499.png 1024w, https://www.osradar.com/wp-content/uploads/2018/11/4-4-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2018/11/4-4-696x339.png 696w, https://www.osradar.com/wp-content/uploads/2018/11/4-4-1068x521.png 1068w, https://www.osradar.com/wp-content/uploads/2018/11/4-4-861x420.png 861w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-7040" class="wp-caption-text">4.- Apache web server default page</figcaption></figure></p>
<p>If you see the image above, apache is correctly installed.</p>
<h2>3. Install PHP</h2>
<p>In this step, you have to install PHP. This in order to be able to run WordPress properly. In addition to the language, it is necessary to install some additional modules.</p>
<pre class="">:~$ sudo apt install php7.2 libapache2-mod-php7.2 php7.2-common php7.2-mbstring php7.2-xmlrpc php7.2-soap php7.2-gd php7.2-xml php7.2-intl php7.2-mysql php7.2-cli php7.2 php7.2-ldap php7.2-zip php7.2-curl</pre>
<p><figure id="attachment_7041" aria-describedby="caption-attachment-7041" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-7041" src="https://www.osradar.com/wp-content/uploads/2018/11/5-4.png" alt="5.- Installing PHP" width="1366" height="768" srcset="https://www.osradar.com/wp-content/uploads/2018/11/5-4.png 1366w, https://www.osradar.com/wp-content/uploads/2018/11/5-4-300x169.png 300w, https://www.osradar.com/wp-content/uploads/2018/11/5-4-768x432.png 768w, https://www.osradar.com/wp-content/uploads/2018/11/5-4-1024x576.png 1024w, https://www.osradar.com/wp-content/uploads/2018/11/5-4-696x391.png 696w, https://www.osradar.com/wp-content/uploads/2018/11/5-4-1068x600.png 1068w, https://www.osradar.com/wp-content/uploads/2018/11/5-4-747x420.png 747w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-7041" class="wp-caption-text">5.- Installing PHP</figcaption></figure></p>
<p>Now it&#8217;s time to check that PHP is working.</p>
<p>Create a file called <code>test.php</code> on <code>/var/www/html/</code> directory.</p>
<pre class="">:~$ sudo nano /var/www/html/test.php</pre>
<p>And add the following:</p>
<pre class="">&lt;?php
echo "PHP is working";
?&gt;</pre>
<p><figure id="attachment_7042" aria-describedby="caption-attachment-7042" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-7042" src="https://www.osradar.com/wp-content/uploads/2018/11/6-4.png" alt="6.- PHP test file" width="1366" height="768" srcset="https://www.osradar.com/wp-content/uploads/2018/11/6-4.png 1366w, https://www.osradar.com/wp-content/uploads/2018/11/6-4-300x169.png 300w, https://www.osradar.com/wp-content/uploads/2018/11/6-4-768x432.png 768w, https://www.osradar.com/wp-content/uploads/2018/11/6-4-1024x576.png 1024w, https://www.osradar.com/wp-content/uploads/2018/11/6-4-696x391.png 696w, https://www.osradar.com/wp-content/uploads/2018/11/6-4-1068x600.png 1068w, https://www.osradar.com/wp-content/uploads/2018/11/6-4-747x420.png 747w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-7042" class="wp-caption-text">6.- PHP test file</figcaption></figure></p>
<p>Next, open the file through the web browser <code>http://IP_SERVER/test.php</code></p>
<p><figure id="attachment_7043" aria-describedby="caption-attachment-7043" style="width: 882px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-7043" src="https://www.osradar.com/wp-content/uploads/2018/11/7-4.png" alt="7.- PHP is working" width="882" height="177" srcset="https://www.osradar.com/wp-content/uploads/2018/11/7-4.png 882w, https://www.osradar.com/wp-content/uploads/2018/11/7-4-300x60.png 300w, https://www.osradar.com/wp-content/uploads/2018/11/7-4-768x154.png 768w, https://www.osradar.com/wp-content/uploads/2018/11/7-4-696x140.png 696w" sizes="(max-width: 882px) 100vw, 882px" /><figcaption id="caption-attachment-7043" class="wp-caption-text">7.- PHP is working</figcaption></figure></p>
<p>Finally, PHP is working fine.</p>
<h2>4. Install MariaDB</h2>
<p>WordPress requires for its operation the installation and configuration of a database manager application.</p>
<p><a href="https://mariadb.org/" rel="noopener">MariaDB</a> is a great alternative for this since it is free and above all stable. It is also compatible with MySQL as it is a fork of MySQL.</p>
<pre class="">:~$ sudo apt install mariadb-server</pre>
<p><figure id="attachment_7044" aria-describedby="caption-attachment-7044" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-7044" src="https://www.osradar.com/wp-content/uploads/2018/11/8-3.png" alt="8.- Installing MariaDB" width="1366" height="768" srcset="https://www.osradar.com/wp-content/uploads/2018/11/8-3.png 1366w, https://www.osradar.com/wp-content/uploads/2018/11/8-3-300x169.png 300w, https://www.osradar.com/wp-content/uploads/2018/11/8-3-768x432.png 768w, https://www.osradar.com/wp-content/uploads/2018/11/8-3-1024x576.png 1024w, https://www.osradar.com/wp-content/uploads/2018/11/8-3-696x391.png 696w, https://www.osradar.com/wp-content/uploads/2018/11/8-3-1068x600.png 1068w, https://www.osradar.com/wp-content/uploads/2018/11/8-3-747x420.png 747w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-7044" class="wp-caption-text">8.- Installing MariaDB</figcaption></figure></p>
<p>Then, enable the service and start the service.</p>
<pre class="">:~$ sudo systemctl enable mariadb
:~$ sudo systemctl start mariadb</pre>
<p><figure id="attachment_7045" aria-describedby="caption-attachment-7045" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-7045" src="https://www.osradar.com/wp-content/uploads/2018/11/9-3.png" alt="9.- Enabling MariaDB service" width="1366" height="768" srcset="https://www.osradar.com/wp-content/uploads/2018/11/9-3.png 1366w, https://www.osradar.com/wp-content/uploads/2018/11/9-3-300x169.png 300w, https://www.osradar.com/wp-content/uploads/2018/11/9-3-768x432.png 768w, https://www.osradar.com/wp-content/uploads/2018/11/9-3-1024x576.png 1024w, https://www.osradar.com/wp-content/uploads/2018/11/9-3-696x391.png 696w, https://www.osradar.com/wp-content/uploads/2018/11/9-3-1068x600.png 1068w, https://www.osradar.com/wp-content/uploads/2018/11/9-3-747x420.png 747w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-7045" class="wp-caption-text">9.- Enabling MariaDB service</figcaption></figure></p>
<p>Now, you need to configure a root key for MariaDB. You can also configure other things there. To do this, run the <code>mysql_secure_installation</code> script.</p>
<pre class="">:~$ sudo mysql_secure_installation</pre>
<p><figure id="attachment_7046" aria-describedby="caption-attachment-7046" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-7046" src="https://www.osradar.com/wp-content/uploads/2018/11/10-2.png" alt="10.- Using the mysql_secure_installation script" width="1366" height="768" srcset="https://www.osradar.com/wp-content/uploads/2018/11/10-2.png 1366w, https://www.osradar.com/wp-content/uploads/2018/11/10-2-300x169.png 300w, https://www.osradar.com/wp-content/uploads/2018/11/10-2-768x432.png 768w, https://www.osradar.com/wp-content/uploads/2018/11/10-2-1024x576.png 1024w, https://www.osradar.com/wp-content/uploads/2018/11/10-2-696x391.png 696w, https://www.osradar.com/wp-content/uploads/2018/11/10-2-1068x600.png 1068w, https://www.osradar.com/wp-content/uploads/2018/11/10-2-747x420.png 747w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-7046" class="wp-caption-text">10.- Using the mysql_secure_installation script</figcaption></figure></p>
<p><figure id="attachment_7047" aria-describedby="caption-attachment-7047" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-7047" src="https://www.osradar.com/wp-content/uploads/2018/11/11-1.png" alt="11.- Using the mysql_secure_installation script to configure MariaDB" width="1366" height="768" srcset="https://www.osradar.com/wp-content/uploads/2018/11/11-1.png 1366w, https://www.osradar.com/wp-content/uploads/2018/11/11-1-300x169.png 300w, https://www.osradar.com/wp-content/uploads/2018/11/11-1-768x432.png 768w, https://www.osradar.com/wp-content/uploads/2018/11/11-1-1024x576.png 1024w, https://www.osradar.com/wp-content/uploads/2018/11/11-1-696x391.png 696w, https://www.osradar.com/wp-content/uploads/2018/11/11-1-1068x600.png 1068w, https://www.osradar.com/wp-content/uploads/2018/11/11-1-747x420.png 747w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-7047" class="wp-caption-text">11.- Using the mysql_secure_installation script to configure MariaDB</figcaption></figure></p>
<p>As you can see, I said Y, N, Y, Y to the questions.</p>
<p>Once MariaDB is correctly installed and configured, it is necessary to create the database and the WordPress user.</p>
<pre class="">:~$ sudo mysql -u root -p</pre>
<pre class="">CREATE DATABASE wordpress;
USE wordpress;
GRANT ALL PRIVILEGES ON wordpress.* TO 'wordpressuser'@'localhost' IDENTIFIED BY 'wordpresspss';
FLUSH PRIVILEGES;
exit;</pre>
<p><figure id="attachment_7048" aria-describedby="caption-attachment-7048" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-7048" src="https://www.osradar.com/wp-content/uploads/2018/11/12-1.png" alt="12.- Creating the database for wordpress" width="1366" height="768" srcset="https://www.osradar.com/wp-content/uploads/2018/11/12-1.png 1366w, https://www.osradar.com/wp-content/uploads/2018/11/12-1-300x169.png 300w, https://www.osradar.com/wp-content/uploads/2018/11/12-1-768x432.png 768w, https://www.osradar.com/wp-content/uploads/2018/11/12-1-1024x576.png 1024w, https://www.osradar.com/wp-content/uploads/2018/11/12-1-696x391.png 696w, https://www.osradar.com/wp-content/uploads/2018/11/12-1-1068x600.png 1068w, https://www.osradar.com/wp-content/uploads/2018/11/12-1-747x420.png 747w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-7048" class="wp-caption-text">12.- Creating the database for WordPress</figcaption></figure></p>
<p>Now, you can install WordPress.</p>
<h2>5. Install WordPress</h2>
<p>The time has come to install WordPress. First, download it.</p>
<pre class="">:~$ cd /tmp
:~$ wget https://wordpress.org/latest.tar.gz</pre>
<p><figure id="attachment_7049" aria-describedby="caption-attachment-7049" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-7049" src="https://www.osradar.com/wp-content/uploads/2018/11/13-1.png" alt="13.- Download and install WordPress" width="1366" height="768" srcset="https://www.osradar.com/wp-content/uploads/2018/11/13-1.png 1366w, https://www.osradar.com/wp-content/uploads/2018/11/13-1-300x169.png 300w, https://www.osradar.com/wp-content/uploads/2018/11/13-1-768x432.png 768w, https://www.osradar.com/wp-content/uploads/2018/11/13-1-1024x576.png 1024w, https://www.osradar.com/wp-content/uploads/2018/11/13-1-696x391.png 696w, https://www.osradar.com/wp-content/uploads/2018/11/13-1-1068x600.png 1068w, https://www.osradar.com/wp-content/uploads/2018/11/13-1-747x420.png 747w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-7049" class="wp-caption-text">13.- Download and install WordPress</figcaption></figure></p>
<p>Now, decompress the file.</p>
<pre class="">:~$ tar -xvzf latest.tar.gz</pre>
<p><figure id="attachment_7050" aria-describedby="caption-attachment-7050" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-7050" src="https://www.osradar.com/wp-content/uploads/2018/11/14-1.png" alt="14.- Decompressing the file" width="1366" height="768" srcset="https://www.osradar.com/wp-content/uploads/2018/11/14-1.png 1366w, https://www.osradar.com/wp-content/uploads/2018/11/14-1-300x169.png 300w, https://www.osradar.com/wp-content/uploads/2018/11/14-1-768x432.png 768w, https://www.osradar.com/wp-content/uploads/2018/11/14-1-1024x576.png 1024w, https://www.osradar.com/wp-content/uploads/2018/11/14-1-696x391.png 696w, https://www.osradar.com/wp-content/uploads/2018/11/14-1-1068x600.png 1068w, https://www.osradar.com/wp-content/uploads/2018/11/14-1-747x420.png 747w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-7050" class="wp-caption-text">14.- Decompressing the file</figcaption></figure></p>
<p>Then move the folder to <code>/var/www/html</code>. Next, change the folder owner and assign permissions.</p>
<pre class="">:~$ sudo mv wordpress/ /var/www/html/
:~$ sudo chown -R www-data:www-data /var/www/html/wordpress/
:~$ sudo chmod 755 -R /var/www/html/wordpress/</pre>
<p>Now, you can complete the installation from the web interface.</p>
<h2>6. Completing the installation</h2>
<p>Now, through the web interface, it is necessary to complete the installation. Go to <code>http://IP_SERVER/wordpress</code> and you will see the following.</p>
<p><figure id="attachment_7051" aria-describedby="caption-attachment-7051" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-7051" src="https://www.osradar.com/wp-content/uploads/2018/11/15-1.png" alt="15.- WordPress Installation" width="1366" height="666" srcset="https://www.osradar.com/wp-content/uploads/2018/11/15-1.png 1366w, https://www.osradar.com/wp-content/uploads/2018/11/15-1-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2018/11/15-1-768x374.png 768w, https://www.osradar.com/wp-content/uploads/2018/11/15-1-1024x499.png 1024w, https://www.osradar.com/wp-content/uploads/2018/11/15-1-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2018/11/15-1-696x339.png 696w, https://www.osradar.com/wp-content/uploads/2018/11/15-1-1068x521.png 1068w, https://www.osradar.com/wp-content/uploads/2018/11/15-1-861x420.png 861w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-7051" class="wp-caption-text">15.- WordPress Installation</figcaption></figure></p>
<p>In the next step, you will have to enter the information corresponding to the database.</p>
<p><figure id="attachment_7052" aria-describedby="caption-attachment-7052" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-7052" src="https://www.osradar.com/wp-content/uploads/2018/11/16-1.png" alt="16.- Adding some information to installer" width="1366" height="666" srcset="https://www.osradar.com/wp-content/uploads/2018/11/16-1.png 1366w, https://www.osradar.com/wp-content/uploads/2018/11/16-1-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2018/11/16-1-768x374.png 768w, https://www.osradar.com/wp-content/uploads/2018/11/16-1-1024x499.png 1024w, https://www.osradar.com/wp-content/uploads/2018/11/16-1-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2018/11/16-1-696x339.png 696w, https://www.osradar.com/wp-content/uploads/2018/11/16-1-1068x521.png 1068w, https://www.osradar.com/wp-content/uploads/2018/11/16-1-861x420.png 861w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-7052" class="wp-caption-text">16.- Adding some information to the installer</figcaption></figure></p>
<p>Then you can continue with the installation.</p>
<p><figure id="attachment_7053" aria-describedby="caption-attachment-7053" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-7053" src="https://www.osradar.com/wp-content/uploads/2018/11/17-1.png" alt="17.- Continuing the installation" width="1366" height="666" srcset="https://www.osradar.com/wp-content/uploads/2018/11/17-1.png 1366w, https://www.osradar.com/wp-content/uploads/2018/11/17-1-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2018/11/17-1-768x374.png 768w, https://www.osradar.com/wp-content/uploads/2018/11/17-1-1024x499.png 1024w, https://www.osradar.com/wp-content/uploads/2018/11/17-1-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2018/11/17-1-696x339.png 696w, https://www.osradar.com/wp-content/uploads/2018/11/17-1-1068x521.png 1068w, https://www.osradar.com/wp-content/uploads/2018/11/17-1-861x420.png 861w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-7053" class="wp-caption-text">17.- Continuing the installation</figcaption></figure></p>
<p>Then, enter the information from your website or blog that you want to create. You also have to create the username and the password.</p>
<p><figure id="attachment_7054" aria-describedby="caption-attachment-7054" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-7054" src="https://www.osradar.com/wp-content/uploads/2018/11/18-1.png" alt="18.- Add your website information" width="1366" height="666" srcset="https://www.osradar.com/wp-content/uploads/2018/11/18-1.png 1366w, https://www.osradar.com/wp-content/uploads/2018/11/18-1-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2018/11/18-1-768x374.png 768w, https://www.osradar.com/wp-content/uploads/2018/11/18-1-1024x499.png 1024w, https://www.osradar.com/wp-content/uploads/2018/11/18-1-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2018/11/18-1-696x339.png 696w, https://www.osradar.com/wp-content/uploads/2018/11/18-1-1068x521.png 1068w, https://www.osradar.com/wp-content/uploads/2018/11/18-1-861x420.png 861w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-7054" class="wp-caption-text">18.- Add your website information</figcaption></figure></p>
<p>When you continue, you will get the screen to log in, with the admin user and the password you defined.</p>
<p><figure id="attachment_7055" aria-describedby="caption-attachment-7055" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-7055" src="https://www.osradar.com/wp-content/uploads/2018/11/19-1.png" alt="19.- WordPress login" width="1366" height="666" srcset="https://www.osradar.com/wp-content/uploads/2018/11/19-1.png 1366w, https://www.osradar.com/wp-content/uploads/2018/11/19-1-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2018/11/19-1-768x374.png 768w, https://www.osradar.com/wp-content/uploads/2018/11/19-1-1024x499.png 1024w, https://www.osradar.com/wp-content/uploads/2018/11/19-1-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2018/11/19-1-696x339.png 696w, https://www.osradar.com/wp-content/uploads/2018/11/19-1-1068x521.png 1068w, https://www.osradar.com/wp-content/uploads/2018/11/19-1-861x420.png 861w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-7055" class="wp-caption-text">19.- WordPress login</figcaption></figure></p>
<p>And finally, you will see the WordPress dashboard.</p>
<p><figure id="attachment_7056" aria-describedby="caption-attachment-7056" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-7056" src="https://www.osradar.com/wp-content/uploads/2018/11/20-1.png" alt="20.- WordPress dashboard" width="1366" height="666" srcset="https://www.osradar.com/wp-content/uploads/2018/11/20-1.png 1366w, https://www.osradar.com/wp-content/uploads/2018/11/20-1-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2018/11/20-1-768x374.png 768w, https://www.osradar.com/wp-content/uploads/2018/11/20-1-1024x499.png 1024w, https://www.osradar.com/wp-content/uploads/2018/11/20-1-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2018/11/20-1-696x339.png 696w, https://www.osradar.com/wp-content/uploads/2018/11/20-1-1068x521.png 1068w, https://www.osradar.com/wp-content/uploads/2018/11/20-1-861x420.png 861w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-7056" class="wp-caption-text">20.- WordPress dashboard</figcaption></figure></p>
<p>And that&#8217;s it. If you scroll down, you will see the current version.</p>
<p><figure id="attachment_19675" aria-describedby="caption-attachment-19675" style="width: 1365px" class="wp-caption alignnone"><img loading="lazy" class="wp-image-19675 size-full" src="https://www.osradar.com/wp-content/uploads/2019/05/wordpress54.png" alt="21.- WordPress 5.4 installed" width="1365" height="383" srcset="https://www.osradar.com/wp-content/uploads/2019/05/wordpress54.png 1365w, https://www.osradar.com/wp-content/uploads/2019/05/wordpress54-300x84.png 300w, https://www.osradar.com/wp-content/uploads/2019/05/wordpress54-1024x287.png 1024w, https://www.osradar.com/wp-content/uploads/2019/05/wordpress54-768x215.png 768w, https://www.osradar.com/wp-content/uploads/2019/05/wordpress54-696x195.png 696w, https://www.osradar.com/wp-content/uploads/2019/05/wordpress54-1068x300.png 1068w" sizes="(max-width: 1365px) 100vw, 1365px" /><figcaption id="caption-attachment-19675" class="wp-caption-text">21.- WordPress 5.4 installed</figcaption></figure></p>
<h2>Conclusion</h2>
<p>If you want to create a blog or a personal web site, I think your first option to do so is WordPress, because its installation is not complicated, and because it is free. All this without losing robustness and power.</p>
<p>Please share this article with your friends.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-install-wordpress-on-ubuntu-18-04-lts/">How to install WordPress 5.4 on Ubuntu 18.04 LTS?</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-wordpress-on-ubuntu-18-04-lts/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to install WordPress with lighttpd on Debian 10?</title>
		<link>https://www.osradar.com/install-wordpress-with-lighttpd-debian-10/</link>
					<comments>https://www.osradar.com/install-wordpress-with-lighttpd-debian-10/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Tue, 14 Jan 2020 23:33:00 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[cms]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[wordpress]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=17536</guid>

					<description><![CDATA[<p>This time I will show you how to install WordPress with Lighttpd on Debian 10 What is WordPress? WordPress is a CMS (content manager system) that is to say it is an application that allows you to create a blog of information. However, over time has evolved and not only provides services to create blogs [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-wordpress-with-lighttpd-debian-10/">How to install WordPress with lighttpd 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><strong>This time I will show you how to install WordPress with Lighttpd on Debian 10</strong></p>
<h2>What is WordPress?</h2>
<p><a href="http://wordpress.com/">WordPress</a> is a CMS (content manager system) that is to say it is an application that allows you to create a blog of information. However, over time has evolved and not only provides services to create blogs but corporate websites or what you can imagine.</p>
<p>Thanks to WordPress and <a href="https://www.osradar.com/tag/cms/">CMS</a>, publish news and entries, do not require knowledge of HTML or <a href="https://www.osradar.com/tag/php/">PHP</a>, but everything is visual.</p>
<p>So, if you want to have a personal blog or for educational purposes, WordPress is a pretty good solution.</p>
<p>So, let us start.</p>
<h2>Install WordPress with Lighttpd on Debian 10</h2>
<h3>Install Lighttpd on Debian 10</h3>
<p>Obviously the first step is to install and run Lighttpd on Debian 10. But don&#8217;t worry, we have prepared a post for you so you can do it without any problems.</p>
<p><a href="https://www.osradar.com/install-lighttpd-debian-10/" target="_blank" rel="noopener noreferrer">How to install Lighttpd on Debian 10?</a></p>
<p>Of course, additionally, you have to install some extra PHP modules to make WordPress work properly.</p>
<pre>php7.3 php7.3-fpm php7.3-mysql php7.3-cli php7.3-curl php7.3-xml php-json php-zip php-mbstring php-gd php-intl php-cgi</pre>
<p>Once you have installed them, it is now the turn of the database manager.</p>
<h3>Create a new database and user for WordPress</h3>
<p>Now it&#8217;s time to install a database manager. In this case, we will opt for MariaDB. First we install it with the following command:</p>
<pre>:~$ sudo apt install mariadb-server</pre>
<p>Then, once the installation is complete, the mysq_secure_installation script must be run to define a new key for the root user and other configurations.</p>
<pre>:~$ sudo mysql_secure_installation</pre>
<p>After defining the new password for the root user, you will have to answer a few questions.</p>
<pre>Remove anonymous users? Y
Disallow root login remotely? Y
Remove test database and access to it? Y
Reload privilege tables now? Y</pre>
<p>Now access the MariaDB console to create the database for WordPress and a new user.</p>
<pre>:~$ sudo mysql -u root -p<br />&gt; CREATE DATABASE wordpress;
&gt; GRANT ALL PRIVILEGES on wordpress.* TO 'wordpress_user'@'localhost' IDENTIFIED BY 'wordpress_pss123';
&gt; FLUSH PRIVILEGES;
&gt; EXIT;</pre>
<p>That&#8217;s enough. Now let&#8217;s download WordPress.</p>
<h3>Download WordPress on Debian 10</h3>
<p>Now we can download and install WordPress. So let&#8217;s go for it.</p>
<p>Go to the /tmp folder and from there do the download using wget.</p>
<pre>:~$ cd /tmp<br />:~$ wget -c https://wordpress.org/latest.tar.gz</pre>
<figure id="attachment_17552" aria-describedby="caption-attachment-17552" style="width: 1365px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-17552" src="https://www.osradar.com/wp-content/uploads/2020/01/1-7.png" alt="1.- Download WordPress on Debian 10" width="1365" height="292" srcset="https://www.osradar.com/wp-content/uploads/2020/01/1-7.png 1365w, https://www.osradar.com/wp-content/uploads/2020/01/1-7-300x64.png 300w, https://www.osradar.com/wp-content/uploads/2020/01/1-7-1024x219.png 1024w, https://www.osradar.com/wp-content/uploads/2020/01/1-7-768x164.png 768w, https://www.osradar.com/wp-content/uploads/2020/01/1-7-696x149.png 696w, https://www.osradar.com/wp-content/uploads/2020/01/1-7-1068x228.png 1068w" sizes="(max-width: 1365px) 100vw, 1365px" /><figcaption id="caption-attachment-17552" class="wp-caption-text">1.- Download WordPress on Debian 10</figcaption></figure>
<p>Then, unzip it.</p>
<pre>:~$ tar -xvzf latest.tar.gz</pre>
<p>Then move it to /var/www/html/ and change the permissions of the folder as well as the owner of it.</p>
<pre>:~$ sudo mv wordpress/ /var/www/html/<br />:~$ sudo chown -R www-data:www-data /var/www/html/wordpress/<br />:~$ sudo chmod 755 -R /var/www/html/wordpress/</pre>
<p>Now we will create a new virtual host in Lighttpd.</p>
<p>First, let&#8217;s rename the WordPress folder with the name of the virtual host you want. In this case I will choose <strong>wordpress.osradar.lan</strong>. Obviously you are free to choose yours.</p>
<pre>:~$ sudo mv /var/www/html/wordpress/ /var/www/html/wordpress.osradar.lan</pre>
<p>Then, create the folder dedicated to virtual hosts in Lighttpd.</p>
<pre>:~$ sudo mkdir -p /etc/lighttpd/vhosts.d/</pre>
<p>And add it to the main Lighttpd configuration file:</p>
<pre>:~$ sudo nano /etc/lighttpd/lighttpd.conf</pre>
<pre>include_shell "cat /etc/lighttpd/vhosts.d/*.conf"</pre>
<p>Save the changes and close the file.</p>
<p>Now create the configuration file for the new Virtual host.</p>
<pre>:~$ sudo nano /etc/lighttpd/vhosts.d/wordpress.osradar.lan.conf</pre>
<p>Note how the file name equals the WordPress folder. This is for recommendation. Now add the following:</p>
<pre>$HTTP["host"] =~ "(^|.)wordpress.osradar.lan$" {<br />server.document-root = "/var/www/html/wordpress.osradar.lan"<br />server.errorlog = "/var/log/lighttpd/wordpress.osradar.lan-error.log"<br />accesslog.filename = "/var/log/lighttpd/wordpress.osradar.lan-access.log"<br />url.rewrite-final = ("^/(.*.php)" =&gt; "$0", "^/(.*)$" =&gt; "/index.php/$1" )<br />}</pre>
<figure id="attachment_17553" aria-describedby="caption-attachment-17553" style="width: 968px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-17553" src="https://www.osradar.com/wp-content/uploads/2020/01/2-6.png" alt="2.- Creating a new virtual host for WordPress" width="968" height="212" srcset="https://www.osradar.com/wp-content/uploads/2020/01/2-6.png 968w, https://www.osradar.com/wp-content/uploads/2020/01/2-6-300x66.png 300w, https://www.osradar.com/wp-content/uploads/2020/01/2-6-768x168.png 768w, https://www.osradar.com/wp-content/uploads/2020/01/2-6-696x152.png 696w" sizes="(max-width: 968px) 100vw, 968px" /><figcaption id="caption-attachment-17553" class="wp-caption-text">2.- Creating a new virtual host for WordPress</figcaption></figure>
<p>Save the changes and close the file.</p>
<p>Now, check the syntax.</p>
<pre class="rich-text editor-rich-text__editable block-editor-rich-text__editable is-selected" role="textbox" contenteditable="true" aria-multiline="true" aria-label="Write preformatted text…">:~$ sudo lighttpd -t -f /etc/lighttpd/lighttpd.conf<br />Syntax OK</pre>
<p>And restart Lighttpd.</p>
<pre>:~$ sudo systemctl restart lighttpd</pre>
<p>Now, complete the installation using the web interface.</p>
<h3>Install WordPress with Lighttpd on Debian</h3>
<p>Now, open your web browser and go complete the installation. Remember that the address depends on your virtual host and your server. You will see the following:</p>
<figure id="attachment_17554" aria-describedby="caption-attachment-17554" style="width: 1354px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-17554" src="https://www.osradar.com/wp-content/uploads/2020/01/3-6.png" alt="3.- WordPress installation" width="1354" height="669" srcset="https://www.osradar.com/wp-content/uploads/2020/01/3-6.png 1354w, https://www.osradar.com/wp-content/uploads/2020/01/3-6-300x148.png 300w, https://www.osradar.com/wp-content/uploads/2020/01/3-6-1024x506.png 1024w, https://www.osradar.com/wp-content/uploads/2020/01/3-6-768x379.png 768w, https://www.osradar.com/wp-content/uploads/2020/01/3-6-324x160.png 324w, https://www.osradar.com/wp-content/uploads/2020/01/3-6-696x344.png 696w, https://www.osradar.com/wp-content/uploads/2020/01/3-6-1068x528.png 1068w, https://www.osradar.com/wp-content/uploads/2020/01/3-6-850x420.png 850w" sizes="(max-width: 1354px) 100vw, 1354px" /><figcaption id="caption-attachment-17554" class="wp-caption-text">3.- WordPress installation</figcaption></figure>
<p>Now, type your database credentials.</p>
<figure id="attachment_17555" aria-describedby="caption-attachment-17555" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-17555" src="https://www.osradar.com/wp-content/uploads/2020/01/4-5.png" alt="4.- Type the Database Credentials" width="1366" height="669" srcset="https://www.osradar.com/wp-content/uploads/2020/01/4-5.png 1366w, https://www.osradar.com/wp-content/uploads/2020/01/4-5-300x147.png 300w, https://www.osradar.com/wp-content/uploads/2020/01/4-5-1024x502.png 1024w, https://www.osradar.com/wp-content/uploads/2020/01/4-5-768x376.png 768w, https://www.osradar.com/wp-content/uploads/2020/01/4-5-324x160.png 324w, https://www.osradar.com/wp-content/uploads/2020/01/4-5-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2020/01/4-5-696x341.png 696w, https://www.osradar.com/wp-content/uploads/2020/01/4-5-1068x523.png 1068w, https://www.osradar.com/wp-content/uploads/2020/01/4-5-858x420.png 858w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-17555" class="wp-caption-text">4.- Type the Database Credentials</figcaption></figure>
<p>Now, start the installation.</p>
<figure id="attachment_17556" aria-describedby="caption-attachment-17556" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-17556" src="https://www.osradar.com/wp-content/uploads/2020/01/5-4.png" alt="5.- Install WordPress with Lighttpd on Debian 10" width="1366" height="669" srcset="https://www.osradar.com/wp-content/uploads/2020/01/5-4.png 1366w, https://www.osradar.com/wp-content/uploads/2020/01/5-4-300x147.png 300w, https://www.osradar.com/wp-content/uploads/2020/01/5-4-1024x502.png 1024w, https://www.osradar.com/wp-content/uploads/2020/01/5-4-768x376.png 768w, https://www.osradar.com/wp-content/uploads/2020/01/5-4-324x160.png 324w, https://www.osradar.com/wp-content/uploads/2020/01/5-4-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2020/01/5-4-696x341.png 696w, https://www.osradar.com/wp-content/uploads/2020/01/5-4-1068x523.png 1068w, https://www.osradar.com/wp-content/uploads/2020/01/5-4-858x420.png 858w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-17556" class="wp-caption-text">5.- Install WordPress with Lighttpd on Debian 10</figcaption></figure>
<p>After that, configure the site information and the admin password.</p>
<figure id="attachment_17557" aria-describedby="caption-attachment-17557" style="width: 1354px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-17557" src="https://www.osradar.com/wp-content/uploads/2020/01/6-3.png" alt="6.- Site information" width="1354" height="669" srcset="https://www.osradar.com/wp-content/uploads/2020/01/6-3.png 1354w, https://www.osradar.com/wp-content/uploads/2020/01/6-3-300x148.png 300w, https://www.osradar.com/wp-content/uploads/2020/01/6-3-1024x506.png 1024w, https://www.osradar.com/wp-content/uploads/2020/01/6-3-768x379.png 768w, https://www.osradar.com/wp-content/uploads/2020/01/6-3-324x160.png 324w, https://www.osradar.com/wp-content/uploads/2020/01/6-3-696x344.png 696w, https://www.osradar.com/wp-content/uploads/2020/01/6-3-1068x528.png 1068w, https://www.osradar.com/wp-content/uploads/2020/01/6-3-850x420.png 850w" sizes="(max-width: 1354px) 100vw, 1354px" /><figcaption id="caption-attachment-17557" class="wp-caption-text">6.- Site information</figcaption></figure>
<p>If everything went well, you&#8217;ll see this screen:</p>
<figure id="attachment_17558" aria-describedby="caption-attachment-17558" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-17558" src="https://www.osradar.com/wp-content/uploads/2020/01/7-1.png" alt="7.- WordPress successfully installed" width="1366" height="669" srcset="https://www.osradar.com/wp-content/uploads/2020/01/7-1.png 1366w, https://www.osradar.com/wp-content/uploads/2020/01/7-1-300x147.png 300w, https://www.osradar.com/wp-content/uploads/2020/01/7-1-1024x502.png 1024w, https://www.osradar.com/wp-content/uploads/2020/01/7-1-768x376.png 768w, https://www.osradar.com/wp-content/uploads/2020/01/7-1-324x160.png 324w, https://www.osradar.com/wp-content/uploads/2020/01/7-1-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2020/01/7-1-696x341.png 696w, https://www.osradar.com/wp-content/uploads/2020/01/7-1-1068x523.png 1068w, https://www.osradar.com/wp-content/uploads/2020/01/7-1-858x420.png 858w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-17558" class="wp-caption-text">7.- WordPress successfully installed</figcaption></figure>
<p>Then you can log in with your username and password and you will see the dashboard.</p>
<figure id="attachment_17559" aria-describedby="caption-attachment-17559" style="width: 1354px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-17559" src="https://www.osradar.com/wp-content/uploads/2020/01/8.png" alt="8.- WordPress with lighttpd on Debian 10" width="1354" height="669" srcset="https://www.osradar.com/wp-content/uploads/2020/01/8.png 1354w, https://www.osradar.com/wp-content/uploads/2020/01/8-300x148.png 300w, https://www.osradar.com/wp-content/uploads/2020/01/8-1024x506.png 1024w, https://www.osradar.com/wp-content/uploads/2020/01/8-768x379.png 768w, https://www.osradar.com/wp-content/uploads/2020/01/8-324x160.png 324w, https://www.osradar.com/wp-content/uploads/2020/01/8-696x344.png 696w, https://www.osradar.com/wp-content/uploads/2020/01/8-1068x528.png 1068w, https://www.osradar.com/wp-content/uploads/2020/01/8-850x420.png 850w" sizes="(max-width: 1354px) 100vw, 1354px" /><figcaption id="caption-attachment-17559" class="wp-caption-text">8.- WordPress with lighttpd on Debian 10</figcaption></figure>
<p>So, that is it.</p>
<h2>Conclusion</h2>
<p>While it is true that WordPress is very popular, most installations are done with Apache or Nginx. Well, today we&#8217;ve shown you how to use it with another fast and lightweight web server like Lighttpd.</p>
<p>Please share this post and join <a href="https://t.me/osradar" target="_blank" rel="noopener noreferrer">our Telegram channel.</a></p>
<p> </p>


<p></p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-wordpress-with-lighttpd-debian-10/">How to install WordPress with lighttpd 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-wordpress-with-lighttpd-debian-10/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
