<?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>forum Archives - Linux Windows and android Tutorials</title>
	<atom:link href="https://www.osradar.com/tag/forum/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.osradar.com</link>
	<description>tutorials and news and Seurity</description>
	<lastBuildDate>Sun, 31 Jan 2021 20:24:06 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.8.12</generator>
	<item>
		<title>How to Install Flarum Forum on Ubuntu 20.04</title>
		<link>https://www.osradar.com/install-flarum-forum-ubuntu-20-04/</link>
					<comments>https://www.osradar.com/install-flarum-forum-ubuntu-20-04/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Wed, 03 Feb 2021 03:22:00 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[flarum]]></category>
		<category><![CDATA[focal]]></category>
		<category><![CDATA[Focal Fossa]]></category>
		<category><![CDATA[forum]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[ubuntu]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=28171</guid>

					<description><![CDATA[<p>Hello, friends. Developing a forum for our site can be a very useful idea. That’s why, in this post, we’ll help you to install Flarum Forum on Ubuntu 20.04 Flarum Forum Flarum is a delightfully simple discussion platform for your website. It’s fast and easy to use, with all the features you need to run [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-flarum-forum-ubuntu-20-04/">How to Install Flarum Forum 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>Hello, friends. Developing a forum for our site can be a very useful idea. That’s why, in this post, we’ll help you to install Flarum Forum on Ubuntu 20.04</p>



<h2 id="flarum-forum"><a href="#flarum-forum" name="flarum-forum"></a>Flarum Forum</h2>



<p><a href="https://flarum.org/" target="_blank" rel="noreferrer noopener">Flarum</a> is a delightfully simple discussion platform for your website. It’s fast and easy to use, with all the features you need to run a successful community.</p>



<p>Flarum is the combined successor of esoTalk (opens new window)and FluxBB (opens new window). It is designed to be:</p>



<ul><li>Fast and simple. No clutter, no bloat, no complex dependencies. Flarum is built with PHP so it’s quick and easy to deploy. The interface is powered by Mithril (opens new window), a performant JavaScript framework with a tiny footprint.</li><li>Beautiful and responsive. This is forum software for humans. Flarum is carefully designed to be consistent and intuitive across platforms, out-of-the-box.</li><li>Powerful and extensible. Customize, extend, and integrate Flarum to suit your community. Flarum’s architecture is amazingly flexible, with a powerful Extension API.</li><li>Free and open. Flarum is released under the MIT license (opens new window).</li></ul>



<p>All this information is taken from the official Flarum documentation.</p>



<p>So let’s install it and have a look at it.</p>



<h2 id="install-flarum-forum-on-ubuntu-20.04"><a href="#install-flarum-forum-on-ubuntu-20.04" name="install-flarum-forum-on-ubuntu-20.04"></a>Install Flarum Forum on Ubuntu 20.04</h2>



<p><strong>Note: Flarum Forum is still in beta. This indicates that it is not ready for production even though it is quite usable. So use it for testing or to collaborate with development.</strong></p>



<h3 id="getting-lamp-on-ubuntu-20.04"><a href="#getting-lamp-on-ubuntu-20.04" name="getting-lamp-on-ubuntu-20.04"></a>Getting LAMP on Ubuntu 20.04</h3>



<p>Before starting with the installation, it is advisable to make some minor adjustments and installations on the system.</p>



<p>First, update the distribution completely from the terminal:</p>



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



<p>After that, it is necessary to <a href="https://www.osradar.com/install-lamp-ubuntu-20-04/" target="_blank" rel="noreferrer noopener">install LAMP on Ubuntu 20.04</a> because Flarum Forum requires a web environment.</p>



<p>To install Flarum Forum you also need to install these necessary PHP modules and packages.</p>



<pre class="wp-block-preformatted">php libapache2-mod-php php-cli php-fpm php-common php-common php-mbstring php-gd php-xml php-mysql php-curl zip unzip curl wget git</pre>



<p>Now we can continue.</p>



<h3 id="creating-the-database-for-flarum-forum"><a href="#creating-the-database-for-flarum-forum" name="creating-the-database-for-flarum-forum"></a>Creating the database for Flarum Forum</h3>



<p>Now it is necessary to create a new database and a user so that Flarum Forum can handle the data that is created.</p>



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



<p>And now create the database and the new user:</p>



<pre class="wp-block-preformatted">CREATE DATABASE flarum;
GRANT ALL ON flarum.* TO 'flarumuser' IDENTIFIED BY 'flarumpss';
FLUSH PRIVILEGES;
exit;</pre>



<h3 id="installing-composer"><a href="#installing-composer" name="installing-composer"></a>Installing Composer</h3>



<p>Now it’s time to install Composer which is necessary to perform the installation. To install Composer run each of these commands:</p>



<pre class="wp-block-preformatted">php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');"
php composer-setup.php
php -r "unlink('composer-setup.php');"
sudo mv composer.phar /usr/local/bin/composer</pre>



<p>And test it by running:</p>



<pre class="wp-block-preformatted">composer -V</pre>



<p>We can continue.</p>



<h3 id="download-flarum-forum"><a href="#download-flarum-forum" name="download-flarum-forum"></a>Download Flarum Forum</h3>



<p>Before downloading the application, let’s create a folder where we will do the download and make the current user the owner. This is to avoid using Composer as the root user.</p>



<pre class="wp-block-preformatted">sudo mkdir -p /var/www/flarum
sudo chown -R $USER:$USER /var/www/flarum</pre>



<p>Access the folder you created and install Flarum Forum by running</p>



<pre class="wp-block-preformatted">cd /var/www/flarum
composer create-project flarum/flarum . --stability=beta</pre>



<p>Then, make Apache the owner of the folder:</p>



<pre class="wp-block-preformatted">sudo chown -R www-data:www-data /var/www/flarum</pre>



<p>The next step is to create a new VirtualHost to manage our site:</p>



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



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



<pre class="wp-block-preformatted">&lt;VirtualHost *:80>
     ServerAdmin admin@your_domain.com
     DocumentRoot /var/www/flarum/public
     ServerName your-server
 <code> </code>
     <code>&lt;Directory /var/www/flarum/public></code>
              <code>Options FollowSymlinks</code>
              <code>AllowOverride All</code>
              <code>Require all granted</code>
     <code>&lt;/Directory></code>

 ErrorLog ${APACHE_LOG_DIR}/your-domain.com_error.log
 CustomLog ${APACHE_LOG_DIR}/your-domain.com_access.log combined
&lt;/VirtualHost></pre>



<figure class="wp-block-image size-large"><img loading="lazy" width="884" height="365" src="https://www.osradar.com/wp-content/uploads/2021/01/1-14.png" alt="1.- Creating a new VirtualHost" class="wp-image-28266" srcset="https://www.osradar.com/wp-content/uploads/2021/01/1-14.png 884w, https://www.osradar.com/wp-content/uploads/2021/01/1-14-300x124.png 300w, https://www.osradar.com/wp-content/uploads/2021/01/1-14-768x317.png 768w, https://www.osradar.com/wp-content/uploads/2021/01/1-14-696x287.png 696w" sizes="(max-width: 884px) 100vw, 884px" /><figcaption>1.- Creating a new VirtualHost</figcaption></figure>



<p>Replace <code>ServerName</code> with your domain name. Save the changes and close the editor.</p>



<p>Now, enable the new VirtualHost, the Apache rewrite module, and apply the changes by restarting the service.</p>



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



<h3 id="install-flarum-forum-on-ubuntu-20.04"><a href="#install-flarum-forum-on-ubuntu-20.04" name="install-flarum-forum-on-ubuntu-20.04"></a>Install Flarum Forum on Ubuntu 20.04</h3>



<p>So, now you can open a web browser and access Flarum Forum to complete the installation. In short, you can access it via <code>http://your-domain</code></p>



<p>In this screen, you will have to complete the installation and define a name for the Forum as well as the database parameters.</p>



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



<p>Below you will be able to create the administrator account needed for access.</p>



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



<p>Then, you will then be able to 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/2021/01/4-7-1024x506.png" alt="4.- Flarum Forum running" class="wp-image-28269" srcset="https://www.osradar.com/wp-content/uploads/2021/01/4-7-1024x506.png 1024w, https://www.osradar.com/wp-content/uploads/2021/01/4-7-300x148.png 300w, https://www.osradar.com/wp-content/uploads/2021/01/4-7-768x379.png 768w, https://www.osradar.com/wp-content/uploads/2021/01/4-7-696x344.png 696w, https://www.osradar.com/wp-content/uploads/2021/01/4-7-1068x528.png 1068w, https://www.osradar.com/wp-content/uploads/2021/01/4-7.png 1354w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>4.- Flarum Forum running</figcaption></figure>



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



<p>In summary, Flarum is a project that looks great and that we can already enjoy in beta status. Setting it up is quite easy and that’s what you have learned in this post.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-flarum-forum-ubuntu-20-04/">How to Install Flarum Forum 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-flarum-forum-ubuntu-20-04/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Deploy your custom forum by installing MyBB on Ubuntu 20.04</title>
		<link>https://www.osradar.com/deploy-custom-forum-installing-mybb-ubuntu-20-04/</link>
					<comments>https://www.osradar.com/deploy-custom-forum-installing-mybb-ubuntu-20-04/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Mon, 27 Jul 2020 22:19:00 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[focal]]></category>
		<category><![CDATA[forum]]></category>
		<category><![CDATA[server]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=21988</guid>

					<description><![CDATA[<p>Using mechanisms to deploy forums can be very useful in the field of education. It can even be a great idea for a company. That is why, in this post, I will show you how to install MyBB on Ubuntu 20.04. MyBB is an open source application that is developed in PHP that supports multiple [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/deploy-custom-forum-installing-mybb-ubuntu-20-04/">Deploy your custom forum by installing MyBB 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>Using mechanisms to deploy forums can be very useful in the field of education. It can even be a great idea for a company. That is why, in this post, I will show you how to install MyBB on Ubuntu 20.04.</p>



<p><a href="https://mybb.com/">MyBB</a> is an open source application that is developed in PHP that supports multiple database handlers such as <a href="https://www.osradar.com/optimize-mysql-mariadb-on-linux/">MySQL</a>, <a href="https://www.osradar.com/postgresql-opensuse-15/">PostgreSQL</a>, and SQLite. Its main objective is to deploy forums and blog content. That is to say, it is a CMS with more advantages.</p>



<p>There are many features that make MyBB so special. For example, it is very extensible, thanks to its large community and plugins. Besides, the language will not be a problem because it supports more than 30. That is, it is a powerful tool but with good community support.</p>



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



<h2>Installing MyBB on Ubuntu 20.04</h2>



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



<p>MyBB is deployed using a web server. In this case, we will use the LAMP stack because it is easy and affordable for most people.</p>



<p><a href="https://www.osradar.com/install-lamp-ubuntu-20-04/" target="_blank" aria-label="undefined (opens in a new tab)" rel="noreferrer noopener">How to install LAMP on Ubuntu 20.04?</a></p>



<p>When installing the web server, you must also install these PHP modules:</p>



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



<h3>2.- Create the database for MyBB</h3>



<p>Now that the whole server is ready, we have to create a new database and user for MyBB. Remember that MyBB needs a relational database manager to store all the data required.</p>



<p>This is a good practice since it prevents the root user from being used by third-party applications.</p>



<p>So, access the MariaDB console.</p>



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



<p>And create the database, the new user, and assign permissions.</p>



<pre class="wp-block-preformatted">CREATE DATABASE mybbdb;<br>GRANT ALL PRIVILEGES ON mybbdb.* TO 'mybbuser'@'localhost' IDENTIFIED BY 'mybbPSS123';<br>FLUSH PRIVILEGES;<br>exit;</pre>



<p>These credentials will be used later when we have to install MyBB. Remember that they are test values, you can choose another name for the database, as well as the username and of course, the password.</p>



<h3>3.- Download MyBB on Ubuntu 20.04</h3>



<p>Now we can start downloading MyBB. First, visit the project website to know which is the latest version available and then with the help of the wget command perform the download.</p>



<pre class="wp-block-preformatted">:~$ wget -c https://resources.mybb.com/downloads/mybb_1823.zip
--2020-07-25 01:44:32-- https://resources.mybb.com/downloads/mybb_1823.zip
Resolving resources.mybb.com (resources.mybb.com)… 104.24.30.89, 104.24.31.89, 172.67.67.178, …
Connecting to resources.mybb.com (resources.mybb.com)|104.24.30.89|:443… connected.
HTTP request sent, awaiting response… 200 OK
Length: 2239204 (2.1M) [application/zip]
Saving to: ‘mybb_1823.zip’
mybb_1823.zip 100%[=====================================================================================>] 2.13M 274KB/s in 8.3s
2020-07-25 01:44:42 (262 KB/s) - ‘mybb_1823.zip’ saved [2239204/2239204]</pre>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="188" src="https://www.osradar.com/wp-content/uploads/2020/07/2-11-1024x188.png" alt="2.- Download MyBB on Ubuntu 20.04" class="wp-image-21989" srcset="https://www.osradar.com/wp-content/uploads/2020/07/2-11-1024x188.png 1024w, https://www.osradar.com/wp-content/uploads/2020/07/2-11-300x55.png 300w, https://www.osradar.com/wp-content/uploads/2020/07/2-11-768x141.png 768w, https://www.osradar.com/wp-content/uploads/2020/07/2-11-696x127.png 696w, https://www.osradar.com/wp-content/uploads/2020/07/2-11-1068x196.png 1068w, https://www.osradar.com/wp-content/uploads/2020/07/2-11.png 1343w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>2.- Download MyBB on Ubuntu 20.04</figcaption></figure>



<p>At the time of writing, the latest version of MyBB is <code>1.8.23</code></p>



<p>Next, decompress it using the unzip command. If you don&#8217;t have it installed, you can do it via APT.</p>



<pre class="wp-block-preformatted">:~$ unzip mybb_1823.zip -d mybb</pre>



<p>The above command generates a folder called <code>mybb</code> where all the contents of the application will be stored.</p>



<p>Then move it to the Apache root directory.</p>



<pre class="wp-block-preformatted">:~$ sudo mv mybb /var/www/html/</pre>



<p>Make the Apache user the owner of the folder.</p>



<pre class="wp-block-preformatted">:~$ sudo chown -R www-data:www-data /var/www/html/mybb/</pre>



<p>And assign the right permissions to the folder.</p>



<pre class="wp-block-preformatted">:~$ sudo chmod -R 775 /var/www/html/mybb/</pre>



<p>Now it is necessary to create a new VirtualHost so that Apache can process it better.</p>



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



<p>So, add the following content:</p>



<pre class="wp-block-preformatted">&lt;VirtualHost *:80>
ServerAdmin admin@your-domain.com
DocumentRoot /var/www/html/mybb/Upload/
ServerName forum.osradar.test
ServerAlias forum.osradar.test

     &lt;Directory /var/www/html/mybb/Upload/>
         Options FollowSymLinks
         AllowOverride All
         Order allow,deny
         allow from all
     &lt;/Directory>
&lt;/VirtualHost></pre>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="256" src="https://www.osradar.com/wp-content/uploads/2020/07/3-11-1024x256.png" alt="3.- New VirtualHost or MyBB" class="wp-image-21990" srcset="https://www.osradar.com/wp-content/uploads/2020/07/3-11-1024x256.png 1024w, https://www.osradar.com/wp-content/uploads/2020/07/3-11-300x75.png 300w, https://www.osradar.com/wp-content/uploads/2020/07/3-11-768x192.png 768w, https://www.osradar.com/wp-content/uploads/2020/07/3-11-696x174.png 696w, https://www.osradar.com/wp-content/uploads/2020/07/3-11-1068x267.png 1068w, https://www.osradar.com/wp-content/uploads/2020/07/3-11.png 1089w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>3.- New VirtualHost or MyBB</figcaption></figure>



<p>Save the changes and close the file. Remember that the values of <code>ServerName</code> and <code>ServerAlias</code> have to be your own.</p>



<p>Enable the new VirtualHost with the following command:</p>



<pre class="wp-block-preformatted">:~$ sudo a2ensite mybb.conf</pre>



<p>Also, enable PHP&#8217;s rewrite module and restart Apache.</p>



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



<h3>4.- Install MyBB on Ubuntu 20.04</h3>



<p>Now you have to complete the installation, open a web browser, and go to <code>http://your-server</code> and you will see the welcome screen.</p>



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



<p>Then, you will have to accept the license terms.</p>



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



<p>On the next screen, the installer will verify if the requirements for installation on the server are met.</p>



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



<p>Then, you have to configure the MyBB database. To do this, you will need to enter the MariaDB credentials we created earlier.</p>



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



<p>Now the installer will create the whole database structure.</p>



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



<p>Then he will fill it with data.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="501" src="https://www.osradar.com/wp-content/uploads/2020/07/9-1-1024x501.png" alt="9.- Table population screen" class="wp-image-21997" srcset="https://www.osradar.com/wp-content/uploads/2020/07/9-1-1024x501.png 1024w, https://www.osradar.com/wp-content/uploads/2020/07/9-1-300x147.png 300w, https://www.osradar.com/wp-content/uploads/2020/07/9-1-768x376.png 768w, https://www.osradar.com/wp-content/uploads/2020/07/9-1-696x340.png 696w, https://www.osradar.com/wp-content/uploads/2020/07/9-1-1068x522.png 1068w, https://www.osradar.com/wp-content/uploads/2020/07/9-1.png 1360w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>9.- Table population screen</figcaption></figure>



<p>Then it will start the default theme.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="501" src="https://www.osradar.com/wp-content/uploads/2020/07/10-1024x501.png" alt="10.- Starting the default theme" class="wp-image-21998" srcset="https://www.osradar.com/wp-content/uploads/2020/07/10-1024x501.png 1024w, https://www.osradar.com/wp-content/uploads/2020/07/10-300x147.png 300w, https://www.osradar.com/wp-content/uploads/2020/07/10-768x376.png 768w, https://www.osradar.com/wp-content/uploads/2020/07/10-696x340.png 696w, https://www.osradar.com/wp-content/uploads/2020/07/10-1068x522.png 1068w, https://www.osradar.com/wp-content/uploads/2020/07/10.png 1360w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>10.- Starting the default theme</figcaption></figure>



<p>Now, you will have to configure the site name and other things.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="505" src="https://www.osradar.com/wp-content/uploads/2020/07/11-1024x505.png" alt="11.- Deploy your forum with MyBB on Ubuntu 20.04" class="wp-image-21999" srcset="https://www.osradar.com/wp-content/uploads/2020/07/11-1024x505.png 1024w, https://www.osradar.com/wp-content/uploads/2020/07/11-300x148.png 300w, https://www.osradar.com/wp-content/uploads/2020/07/11-768x379.png 768w, https://www.osradar.com/wp-content/uploads/2020/07/11-696x343.png 696w, https://www.osradar.com/wp-content/uploads/2020/07/11-1068x527.png 1068w, https://www.osradar.com/wp-content/uploads/2020/07/11.png 1348w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>11.- Deploy your forum with MyBB on Ubuntu 20.04</figcaption></figure>



<p>Then, create the administrator user account.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="505" src="https://www.osradar.com/wp-content/uploads/2020/07/12-1024x505.png" alt="12.- Creating the admin account for MyBB" class="wp-image-22000" srcset="https://www.osradar.com/wp-content/uploads/2020/07/12-1024x505.png 1024w, https://www.osradar.com/wp-content/uploads/2020/07/12-300x148.png 300w, https://www.osradar.com/wp-content/uploads/2020/07/12-768x379.png 768w, https://www.osradar.com/wp-content/uploads/2020/07/12-696x343.png 696w, https://www.osradar.com/wp-content/uploads/2020/07/12-1068x527.png 1068w, https://www.osradar.com/wp-content/uploads/2020/07/12.png 1348w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>12.- Creating the admin account for MyBB</figcaption></figure>



<p>In the end, you will be shown a message indicating that MyBB is successfully installed.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="505" src="https://www.osradar.com/wp-content/uploads/2020/07/13-1024x505.png" alt="13.- MyBB installed on Ubuntu 20.04" class="wp-image-22002" srcset="https://www.osradar.com/wp-content/uploads/2020/07/13-1024x505.png 1024w, https://www.osradar.com/wp-content/uploads/2020/07/13-300x148.png 300w, https://www.osradar.com/wp-content/uploads/2020/07/13-768x379.png 768w, https://www.osradar.com/wp-content/uploads/2020/07/13-696x343.png 696w, https://www.osradar.com/wp-content/uploads/2020/07/13-1068x527.png 1068w, https://www.osradar.com/wp-content/uploads/2020/07/13.png 1348w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>13.- MyBB installed on Ubuntu 20.04</figcaption></figure>



<p>On that same screen, you will get the links for your site and the dashboard.</p>



<p>So, go to the administration panel, and first, you will see the log in.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="501" src="https://www.osradar.com/wp-content/uploads/2020/07/14-1024x501.png" alt="14.- MyBB login screen" class="wp-image-22001" srcset="https://www.osradar.com/wp-content/uploads/2020/07/14-1024x501.png 1024w, https://www.osradar.com/wp-content/uploads/2020/07/14-300x147.png 300w, https://www.osradar.com/wp-content/uploads/2020/07/14-768x376.png 768w, https://www.osradar.com/wp-content/uploads/2020/07/14-696x340.png 696w, https://www.osradar.com/wp-content/uploads/2020/07/14-1068x522.png 1068w, https://www.osradar.com/wp-content/uploads/2020/07/14.png 1360w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>14.- MyBB login screen</figcaption></figure>



<p>After logging in, you will finally see the administration panel.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="505" src="https://www.osradar.com/wp-content/uploads/2020/07/15-1024x505.png" alt="15.- MyBB on Ubuntu 20.04" class="wp-image-22003" srcset="https://www.osradar.com/wp-content/uploads/2020/07/15-1024x505.png 1024w, https://www.osradar.com/wp-content/uploads/2020/07/15-300x148.png 300w, https://www.osradar.com/wp-content/uploads/2020/07/15-768x379.png 768w, https://www.osradar.com/wp-content/uploads/2020/07/15-696x343.png 696w, https://www.osradar.com/wp-content/uploads/2020/07/15-1068x527.png 1068w, https://www.osradar.com/wp-content/uploads/2020/07/15.png 1348w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>15.- MyBB on Ubuntu 20.04</figcaption></figure>



<p>Please note that the direct link to your site is <code>http://your-server/index.php</code> and for the administration panel <code>http://your-server/admin/index.php</code></p>



<p>So, enjoy it</p>



<h2>Conclusion</h2>



<p>MyBB is a great application to deploy forums. It is open source and very well supported by the community.</p>



<p>To install MyBB on Ubuntu 20.04 does not require great technical knowledge because it is simple to do.</p>



<p>Please share this post with your friends and join <a href="https://t.me/osradar" target="_blank" aria-label="undefined (opens in a new tab)" rel="noreferrer noopener">our Telegram Channel</a>.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/deploy-custom-forum-installing-mybb-ubuntu-20-04/">Deploy your custom forum by installing MyBB 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/deploy-custom-forum-installing-mybb-ubuntu-20-04/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to install MyBB on Ubuntu 18.04?</title>
		<link>https://www.osradar.com/how-to-install-mybb-on-ubuntu-18-04/</link>
					<comments>https://www.osradar.com/how-to-install-mybb-on-ubuntu-18-04/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Tue, 26 Feb 2019 14:57:11 +0000</pubDate>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[bionic]]></category>
		<category><![CDATA[cms]]></category>
		<category><![CDATA[forum]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[learning]]></category>
		<category><![CDATA[MyBB]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[ubuntu]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=11112</guid>

					<description><![CDATA[<p>Using mechanisms to deploy forums can be very useful in the field of education. It can even be a great idea for a company. That is why, in this post, I will show you how to install MyBB on Ubuntu 18.04. MyBB is an open source application that is developed in PHP that supports multiple [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-install-mybb-on-ubuntu-18-04/">How to install MyBB on Ubuntu 18.04?</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Using mechanisms to deploy forums can be very useful in the field of education. It can even be a great idea for a company. That is why, in this post, I will show you how to install MyBB on Ubuntu 18.04.</p>
<p><a href="https://mybb.com/" rel="noopener">MyBB</a> is an open source application that is developed in PHP that supports multiple database handlers such as <a href="https://www.osradar.com/optimize-mysql-mariadb-on-linux/" rel="noopener">MySQL</a>, <a href="https://www.osradar.com/postgresql-opensuse-15/" rel="noopener">PostgreSQL</a>, and SQLite. Its main objective is to deploy forums and blog content. That is to say, it is a CMS with more advantages.</p>
<p>There are many features that make MyBB so special. For example, it is very extensible, thanks to its large community and plugins. Besides, the language will not be a problem because it supports more than 30. That is, it is a powerful tool but with good community support.</p>
<p>So, let us start.</p>
<h2>1.- Install Apache web server and PHP</h2>
<p>As you can imagine, MyBB requires a functional web server. So the first step is to install the Apache web server. Note that it is also possible to use <a href="https://www.osradar.com/install-nginx-from-the-source-code-ubuntu-18-04/" rel="noopener">Nginx</a>.</p>
<pre>:~$ sudo apt install apache2</pre>
<p><figure id="attachment_11113" aria-describedby="caption-attachment-11113" style="width: 1085px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-11113" src="https://www.osradar.com/wp-content/uploads/2019/02/1-19.png" alt="1.- Install apache" width="1085" height="318" srcset="https://www.osradar.com/wp-content/uploads/2019/02/1-19.png 1085w, https://www.osradar.com/wp-content/uploads/2019/02/1-19-300x88.png 300w, https://www.osradar.com/wp-content/uploads/2019/02/1-19-768x225.png 768w, https://www.osradar.com/wp-content/uploads/2019/02/1-19-1024x300.png 1024w, https://www.osradar.com/wp-content/uploads/2019/02/1-19-696x204.png 696w, https://www.osradar.com/wp-content/uploads/2019/02/1-19-1068x313.png 1068w" sizes="(max-width: 1085px) 100vw, 1085px" /><figcaption id="caption-attachment-11113" class="wp-caption-text">1.- Install apache</figcaption></figure></p>
<p>Ubuntu starts and enables the service automatically. Now, we have to install PHP. The basic requirements indicate that it supports PHP 5.2 onwards, but its developers recommend at least PHP 7.2. Let us install it.</p>
<pre>:~$ sudo apt install php php-xml php-mbstring libapache2-mod-php php-mysql php-mbstring php-gd php-zip php-json</pre>
<p><figure id="attachment_11114" aria-describedby="caption-attachment-11114" style="width: 1365px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-11114" src="https://www.osradar.com/wp-content/uploads/2019/02/2-17.png" alt="2.- Install PHP" width="1365" height="363" srcset="https://www.osradar.com/wp-content/uploads/2019/02/2-17.png 1365w, https://www.osradar.com/wp-content/uploads/2019/02/2-17-300x80.png 300w, https://www.osradar.com/wp-content/uploads/2019/02/2-17-768x204.png 768w, https://www.osradar.com/wp-content/uploads/2019/02/2-17-1024x272.png 1024w, https://www.osradar.com/wp-content/uploads/2019/02/2-17-696x185.png 696w, https://www.osradar.com/wp-content/uploads/2019/02/2-17-1068x284.png 1068w" sizes="(max-width: 1365px) 100vw, 1365px" /><figcaption id="caption-attachment-11114" class="wp-caption-text">2.- Install PHP</figcaption></figure></p>
<p>Finally, restart Apache.</p>
<pre>:~$ sudo systemctl restart apache2</pre>
<h2>2. Install MySQL</h2>
<p>It is not necessary to have an SQL database manager to enjoy MyBB. However, we will. So we will install MySQL.</p>
<pre>:~$ sudo apt install mysql-server</pre>
<p><figure id="attachment_11115" aria-describedby="caption-attachment-11115" style="width: 1365px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-11115" src="https://www.osradar.com/wp-content/uploads/2019/02/3-17.png" alt="3.- Install MySQL" width="1365" height="390" srcset="https://www.osradar.com/wp-content/uploads/2019/02/3-17.png 1365w, https://www.osradar.com/wp-content/uploads/2019/02/3-17-300x86.png 300w, https://www.osradar.com/wp-content/uploads/2019/02/3-17-768x219.png 768w, https://www.osradar.com/wp-content/uploads/2019/02/3-17-1024x293.png 1024w, https://www.osradar.com/wp-content/uploads/2019/02/3-17-696x199.png 696w, https://www.osradar.com/wp-content/uploads/2019/02/3-17-1068x305.png 1068w" sizes="(max-width: 1365px) 100vw, 1365px" /><figcaption id="caption-attachment-11115" class="wp-caption-text">3.- Install MySQL</figcaption></figure></p>
<p>After that, you need to define the root password and other settings. So run the <code>mysql_secure_installation</code> script.</p>
<pre>:~$ sudo mysql_secure_installation</pre>
<p><figure id="attachment_11116" aria-describedby="caption-attachment-11116" style="width: 1365px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-11116" src="https://www.osradar.com/wp-content/uploads/2019/02/4-13.png" alt="4.- Using the mysql_secure_installation script" width="1365" height="767" srcset="https://www.osradar.com/wp-content/uploads/2019/02/4-13.png 1365w, https://www.osradar.com/wp-content/uploads/2019/02/4-13-300x169.png 300w, https://www.osradar.com/wp-content/uploads/2019/02/4-13-768x432.png 768w, https://www.osradar.com/wp-content/uploads/2019/02/4-13-1024x575.png 1024w, https://www.osradar.com/wp-content/uploads/2019/02/4-13-696x391.png 696w, https://www.osradar.com/wp-content/uploads/2019/02/4-13-1068x600.png 1068w, https://www.osradar.com/wp-content/uploads/2019/02/4-13-747x420.png 747w" sizes="(max-width: 1365px) 100vw, 1365px" /><figcaption id="caption-attachment-11116" class="wp-caption-text">4.- Using the mysql_secure_installation script</figcaption></figure></p>
<p>After defining a password for the root user, you will be asked other configuration questions. We recommend that you read them carefully and give your answers. We have answered like this, Y, N, Y, Y.</p>
<p>The, create the database and the new user for MyBB.</p>
<pre>:~$ sudo mysql -u root -p
CREATE DATABASE mybbdb;
GRANT ALL PRIVILEGES ON mybbdb.* TO 'mybbuser'@'localhost' IDENTIFIED BY 'mybbPSS123';
FLUSH PRIVILEGES;
exit;</pre>
<p><figure id="attachment_11117" aria-describedby="caption-attachment-11117" style="width: 924px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-11117" src="https://www.osradar.com/wp-content/uploads/2019/02/5-15.png" alt="5.- creating the database and user for MyBB" width="924" height="479" srcset="https://www.osradar.com/wp-content/uploads/2019/02/5-15.png 924w, https://www.osradar.com/wp-content/uploads/2019/02/5-15-300x156.png 300w, https://www.osradar.com/wp-content/uploads/2019/02/5-15-768x398.png 768w, https://www.osradar.com/wp-content/uploads/2019/02/5-15-696x361.png 696w, https://www.osradar.com/wp-content/uploads/2019/02/5-15-810x420.png 810w" sizes="(max-width: 924px) 100vw, 924px" /><figcaption id="caption-attachment-11117" class="wp-caption-text">5.- creating the database and user for MyBB</figcaption></figure></p>
<p>So, that is all with MySQL.</p>
<h2>3. Download and install MyBB</h2>
<p>Now we can download it from the project website. Currently, the last stable version is 1.8.19.</p>
<pre>:~$ cd /tmp/
:~$ wget https://resources.mybb.com/downloads/mybb_1819.zip</pre>
<p><figure id="attachment_11118" aria-describedby="caption-attachment-11118" style="width: 1365px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-11118" src="https://www.osradar.com/wp-content/uploads/2019/02/6-14.png" alt="6.- Download MyBB" width="1365" height="320" srcset="https://www.osradar.com/wp-content/uploads/2019/02/6-14.png 1365w, https://www.osradar.com/wp-content/uploads/2019/02/6-14-300x70.png 300w, https://www.osradar.com/wp-content/uploads/2019/02/6-14-768x180.png 768w, https://www.osradar.com/wp-content/uploads/2019/02/6-14-1024x240.png 1024w, https://www.osradar.com/wp-content/uploads/2019/02/6-14-696x163.png 696w, https://www.osradar.com/wp-content/uploads/2019/02/6-14-1068x250.png 1068w" sizes="(max-width: 1365px) 100vw, 1365px" /><figcaption id="caption-attachment-11118" class="wp-caption-text">6.- Download MyBB</figcaption></figure></p>
<p>After that, decompress it on <code>/var/www/html</code>.</p>
<pre>:~$ unzip mybb_1819.zip -d mybb</pre>
<p>Then, move it to the Apache web root and set the proper permissions to the folder.</p>
<pre>:~$ sudo mv mybb /var/www/html/
:~$ sudo chown -R www-data:www-data /var/www/html/mybb/
:~$ sudo chmod -R 775 /var/www/html/mybb/</pre>
<p><figure id="attachment_11119" aria-describedby="caption-attachment-11119" style="width: 813px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-11119" src="https://www.osradar.com/wp-content/uploads/2019/02/7-14.png" alt="7.- Setting the properly permission to the folder" width="813" height="146" srcset="https://www.osradar.com/wp-content/uploads/2019/02/7-14.png 813w, https://www.osradar.com/wp-content/uploads/2019/02/7-14-300x54.png 300w, https://www.osradar.com/wp-content/uploads/2019/02/7-14-768x138.png 768w, https://www.osradar.com/wp-content/uploads/2019/02/7-14-696x125.png 696w" sizes="(max-width: 813px) 100vw, 813px" /><figcaption id="caption-attachment-11119" class="wp-caption-text">7.- Setting the proper permission to the folder</figcaption></figure></p>
<p>Finally, create a new <a href="https://www.osradar.com/how-to-configure-an-apache-virtual-host-on-debian-9/">virtualhost</a> for MyBB.</p>
<pre>:~$ sudo nano /etc/apache2/sites-available/mybb.conf</pre>
<p>And add the following.</p>
<pre>&lt;VirtualHost *:80&gt;
ServerAdmin admin@your-domain.com
DocumentRoot /var/www/html/mybb/Upload/
ServerName your-domain.com
ServerAlias www.your-domain.com

&lt;Directory /var/www/html/mybb/Upload/&gt;
      Options FollowSymLinks
      AllowOverride All
      Order allow,deny
      allow from all
&lt;/Directory&gt;
&lt;/VirtualHost&gt;</pre>
<p><figure id="attachment_11123" aria-describedby="caption-attachment-11123" style="width: 868px" class="wp-caption alignnone"><img loading="lazy" class="wp-image-11123 size-full" src="https://www.osradar.com/wp-content/uploads/2019/02/8-3223.png" alt="8.- Creating the new virtualhost" width="868" height="368" srcset="https://www.osradar.com/wp-content/uploads/2019/02/8-3223.png 868w, https://www.osradar.com/wp-content/uploads/2019/02/8-3223-300x127.png 300w, https://www.osradar.com/wp-content/uploads/2019/02/8-3223-768x326.png 768w, https://www.osradar.com/wp-content/uploads/2019/02/8-3223-696x295.png 696w" sizes="(max-width: 868px) 100vw, 868px" /><figcaption id="caption-attachment-11123" class="wp-caption-text">8.- Creating the new virtualhost</figcaption></figure></p>
<p>Enable the new configuration and the rewrite module. Next, restart apache.</p>
<pre>:~$ sudo a2ensite mybb.conf
:~$ sudo a2enmod rewrite
:~$ sudo systemctl restart apache2</pre>
<p><figure id="attachment_11121" aria-describedby="caption-attachment-11121" style="width: 980px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-11121" src="https://www.osradar.com/wp-content/uploads/2019/02/9-12.png" alt="9.- Enabling the virtualhost" width="980" height="197" srcset="https://www.osradar.com/wp-content/uploads/2019/02/9-12.png 980w, https://www.osradar.com/wp-content/uploads/2019/02/9-12-300x60.png 300w, https://www.osradar.com/wp-content/uploads/2019/02/9-12-768x154.png 768w, https://www.osradar.com/wp-content/uploads/2019/02/9-12-696x140.png 696w" sizes="(max-width: 980px) 100vw, 980px" /><figcaption id="caption-attachment-11121" class="wp-caption-text">9.- Enabling the virtualhost</figcaption></figure></p>
<h2>4. Complete the installation on the web browser</h2>
<p>Finally, open your web browser and access your server to complete the installation. First, the welcome screen. Click on the next button.</p>
<p><figure id="attachment_11124" aria-describedby="caption-attachment-11124" style="width: 1366px" class="wp-caption aligncenter"><img loading="lazy" class="wp-image-11124 size-full" src="https://www.osradar.com/wp-content/uploads/2019/02/10-13.png" alt="10.- Install MyBB on ubuntu" width="1366" height="666" srcset="https://www.osradar.com/wp-content/uploads/2019/02/10-13.png 1366w, https://www.osradar.com/wp-content/uploads/2019/02/10-13-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/02/10-13-768x374.png 768w, https://www.osradar.com/wp-content/uploads/2019/02/10-13-1024x499.png 1024w, https://www.osradar.com/wp-content/uploads/2019/02/10-13-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2019/02/10-13-696x339.png 696w, https://www.osradar.com/wp-content/uploads/2019/02/10-13-1068x521.png 1068w, https://www.osradar.com/wp-content/uploads/2019/02/10-13-861x420.png 861w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-11124" class="wp-caption-text">10.- Install MyBB on ubuntu</figcaption></figure></p>
<p>Now, you have to accept the license. Click on the next button.</p>
<p><figure id="attachment_11125" aria-describedby="caption-attachment-11125" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-11125" src="https://www.osradar.com/wp-content/uploads/2019/02/11-9.png" alt="11.- License agreement" width="1366" height="666" srcset="https://www.osradar.com/wp-content/uploads/2019/02/11-9.png 1366w, https://www.osradar.com/wp-content/uploads/2019/02/11-9-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/02/11-9-768x374.png 768w, https://www.osradar.com/wp-content/uploads/2019/02/11-9-1024x499.png 1024w, https://www.osradar.com/wp-content/uploads/2019/02/11-9-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2019/02/11-9-696x339.png 696w, https://www.osradar.com/wp-content/uploads/2019/02/11-9-1068x521.png 1068w, https://www.osradar.com/wp-content/uploads/2019/02/11-9-861x420.png 861w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-11125" class="wp-caption-text">11.- License agreement</figcaption></figure></p>
<p>Then, the installer will check for the requirements.</p>
<p><figure id="attachment_11126" aria-describedby="caption-attachment-11126" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-11126" src="https://www.osradar.com/wp-content/uploads/2019/02/12-8.png" alt="12.- Requirements check" width="1366" height="666" srcset="https://www.osradar.com/wp-content/uploads/2019/02/12-8.png 1366w, https://www.osradar.com/wp-content/uploads/2019/02/12-8-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/02/12-8-768x374.png 768w, https://www.osradar.com/wp-content/uploads/2019/02/12-8-1024x499.png 1024w, https://www.osradar.com/wp-content/uploads/2019/02/12-8-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2019/02/12-8-696x339.png 696w, https://www.osradar.com/wp-content/uploads/2019/02/12-8-1068x521.png 1068w, https://www.osradar.com/wp-content/uploads/2019/02/12-8-861x420.png 861w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-11126" class="wp-caption-text">12.- Requirements check</figcaption></figure></p>
<p>Next, you have to configure the database. Just type the credentials.</p>
<p><figure id="attachment_11127" aria-describedby="caption-attachment-11127" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-11127" src="https://www.osradar.com/wp-content/uploads/2019/02/13-6.png" alt="13. Database configuration" width="1366" height="666" srcset="https://www.osradar.com/wp-content/uploads/2019/02/13-6.png 1366w, https://www.osradar.com/wp-content/uploads/2019/02/13-6-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/02/13-6-768x374.png 768w, https://www.osradar.com/wp-content/uploads/2019/02/13-6-1024x499.png 1024w, https://www.osradar.com/wp-content/uploads/2019/02/13-6-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2019/02/13-6-696x339.png 696w, https://www.osradar.com/wp-content/uploads/2019/02/13-6-1068x521.png 1068w, https://www.osradar.com/wp-content/uploads/2019/02/13-6-861x420.png 861w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-11127" class="wp-caption-text">13. Database configuration</figcaption></figure></p>
<p>In the next screen, you will see the database tables creation. Scroll down and click on the next button if everything went OK.</p>
<p><figure id="attachment_11128" aria-describedby="caption-attachment-11128" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-11128" src="https://www.osradar.com/wp-content/uploads/2019/02/14-6.png" alt="14.- Tables creations" width="1366" height="666" srcset="https://www.osradar.com/wp-content/uploads/2019/02/14-6.png 1366w, https://www.osradar.com/wp-content/uploads/2019/02/14-6-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/02/14-6-768x374.png 768w, https://www.osradar.com/wp-content/uploads/2019/02/14-6-1024x499.png 1024w, https://www.osradar.com/wp-content/uploads/2019/02/14-6-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2019/02/14-6-696x339.png 696w, https://www.osradar.com/wp-content/uploads/2019/02/14-6-1068x521.png 1068w, https://www.osradar.com/wp-content/uploads/2019/02/14-6-861x420.png 861w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-11128" class="wp-caption-text">14.- Tables creations</figcaption></figure></p>
<p>Next, the installer will populate the tables.</p>
<p><figure id="attachment_11130" aria-describedby="caption-attachment-11130" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-11130" src="https://www.osradar.com/wp-content/uploads/2019/02/15-6.png" alt="15.- Table population" width="1366" height="666" srcset="https://www.osradar.com/wp-content/uploads/2019/02/15-6.png 1366w, https://www.osradar.com/wp-content/uploads/2019/02/15-6-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/02/15-6-768x374.png 768w, https://www.osradar.com/wp-content/uploads/2019/02/15-6-1024x499.png 1024w, https://www.osradar.com/wp-content/uploads/2019/02/15-6-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2019/02/15-6-696x339.png 696w, https://www.osradar.com/wp-content/uploads/2019/02/15-6-1068x521.png 1068w, https://www.osradar.com/wp-content/uploads/2019/02/15-6-861x420.png 861w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-11130" class="wp-caption-text">15.- Table population</figcaption></figure></p>
<p>After that, the installer will installer the default theme.</p>
<p><figure id="attachment_11131" aria-describedby="caption-attachment-11131" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-11131" src="https://www.osradar.com/wp-content/uploads/2019/02/16-3.png" alt="16.- Insallting the default theme" width="1366" height="666" srcset="https://www.osradar.com/wp-content/uploads/2019/02/16-3.png 1366w, https://www.osradar.com/wp-content/uploads/2019/02/16-3-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/02/16-3-768x374.png 768w, https://www.osradar.com/wp-content/uploads/2019/02/16-3-1024x499.png 1024w, https://www.osradar.com/wp-content/uploads/2019/02/16-3-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2019/02/16-3-696x339.png 696w, https://www.osradar.com/wp-content/uploads/2019/02/16-3-1068x521.png 1068w, https://www.osradar.com/wp-content/uploads/2019/02/16-3-861x420.png 861w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-11131" class="wp-caption-text">16.- Insallting the default theme</figcaption></figure></p>
<p>Next, the board configuration. Type your data.</p>
<p><figure id="attachment_11132" aria-describedby="caption-attachment-11132" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-11132" src="https://www.osradar.com/wp-content/uploads/2019/02/17-3.png" alt="17.- Board configuration" width="1366" height="666" srcset="https://www.osradar.com/wp-content/uploads/2019/02/17-3.png 1366w, https://www.osradar.com/wp-content/uploads/2019/02/17-3-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/02/17-3-768x374.png 768w, https://www.osradar.com/wp-content/uploads/2019/02/17-3-1024x499.png 1024w, https://www.osradar.com/wp-content/uploads/2019/02/17-3-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2019/02/17-3-696x339.png 696w, https://www.osradar.com/wp-content/uploads/2019/02/17-3-1068x521.png 1068w, https://www.osradar.com/wp-content/uploads/2019/02/17-3-861x420.png 861w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-11132" class="wp-caption-text">17.- Board configuration</figcaption></figure></p>
<p>After that, you have to create the admin account.</p>
<p><figure id="attachment_11133" aria-describedby="caption-attachment-11133" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-11133" src="https://www.osradar.com/wp-content/uploads/2019/02/18-1.png" alt="Create administrator account" width="1366" height="666" srcset="https://www.osradar.com/wp-content/uploads/2019/02/18-1.png 1366w, https://www.osradar.com/wp-content/uploads/2019/02/18-1-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/02/18-1-768x374.png 768w, https://www.osradar.com/wp-content/uploads/2019/02/18-1-1024x499.png 1024w, https://www.osradar.com/wp-content/uploads/2019/02/18-1-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2019/02/18-1-696x339.png 696w, https://www.osradar.com/wp-content/uploads/2019/02/18-1-1068x521.png 1068w, https://www.osradar.com/wp-content/uploads/2019/02/18-1-861x420.png 861w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-11133" class="wp-caption-text">18.- Create an administrator account</figcaption></figure></p>
<p>Finally, you will see a message that MyBB is installed.</p>
<p><figure id="attachment_11134" aria-describedby="caption-attachment-11134" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-11134" src="https://www.osradar.com/wp-content/uploads/2019/02/19-1.png" alt="19.- Finish the setup" width="1366" height="666" srcset="https://www.osradar.com/wp-content/uploads/2019/02/19-1.png 1366w, https://www.osradar.com/wp-content/uploads/2019/02/19-1-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/02/19-1-768x374.png 768w, https://www.osradar.com/wp-content/uploads/2019/02/19-1-1024x499.png 1024w, https://www.osradar.com/wp-content/uploads/2019/02/19-1-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2019/02/19-1-696x339.png 696w, https://www.osradar.com/wp-content/uploads/2019/02/19-1-1068x521.png 1068w, https://www.osradar.com/wp-content/uploads/2019/02/19-1-861x420.png 861w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-11134" class="wp-caption-text">19.- Finish the setup</figcaption></figure></p>
<p>Next, you can log in to acces to the Admin control panel.</p>
<p><figure id="attachment_11135" aria-describedby="caption-attachment-11135" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-11135" src="https://www.osradar.com/wp-content/uploads/2019/02/20-1.png" alt="20.- MyBB log in screen" width="1366" height="666" srcset="https://www.osradar.com/wp-content/uploads/2019/02/20-1.png 1366w, https://www.osradar.com/wp-content/uploads/2019/02/20-1-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/02/20-1-768x374.png 768w, https://www.osradar.com/wp-content/uploads/2019/02/20-1-1024x499.png 1024w, https://www.osradar.com/wp-content/uploads/2019/02/20-1-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2019/02/20-1-696x339.png 696w, https://www.osradar.com/wp-content/uploads/2019/02/20-1-1068x521.png 1068w, https://www.osradar.com/wp-content/uploads/2019/02/20-1-861x420.png 861w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-11135" class="wp-caption-text">20.- MyBB log in screen</figcaption></figure></p>
<p>And finally, you will see the control panel.</p>
<p><figure id="attachment_11136" aria-describedby="caption-attachment-11136" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-11136" src="https://www.osradar.com/wp-content/uploads/2019/02/21-1.png" alt="21.- MyBB control panel" width="1366" height="666" srcset="https://www.osradar.com/wp-content/uploads/2019/02/21-1.png 1366w, https://www.osradar.com/wp-content/uploads/2019/02/21-1-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/02/21-1-768x374.png 768w, https://www.osradar.com/wp-content/uploads/2019/02/21-1-1024x499.png 1024w, https://www.osradar.com/wp-content/uploads/2019/02/21-1-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2019/02/21-1-696x339.png 696w, https://www.osradar.com/wp-content/uploads/2019/02/21-1-1068x521.png 1068w, https://www.osradar.com/wp-content/uploads/2019/02/21-1-861x420.png 861w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-11136" class="wp-caption-text">21.- MyBB control panel</figcaption></figure></p>
<p>And that&#8217;s it.</p>
<h2>Conclusion</h2>
<p>MyBB is a great application to deploy forums. It is open source and very well supported by the community.</p>
<p>To install MyBB on Ubuntu 18.04 does not require great technical knowledge because it is simple to do.</p>
<p>Please share this post with your friends.</p>
<p>&nbsp;</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-install-mybb-on-ubuntu-18-04/">How to install MyBB on Ubuntu 18.04?</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.osradar.com/how-to-install-mybb-on-ubuntu-18-04/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
