The Linux distro we’ll be using for this setup is Ubuntu OS. However, this can be implemented in any Linux distro. At the end of this tutorial, you will be able to host your PHP and MySQL-based website on your own Linux machine. Just an important note before moving forward. After following this tutorial, you will have set up your own web server. The real challenge, however, is protecting your server from thousands of active threats. If you’re not an expert in managing Linux server, it is strongly advised to use web hosting services that take care of security. The tutorial is divided into two parts. In the first part, we discuss the basic components and their installation part. In the next section, we shall write sample PHP code for a basic website and host it under the apache2 webserver.

Prerequisites To Setup Web Server

To set up a web server on your own Linux computer, we’ll require the following three components to be installed –

Apache2: apache2 is open-source HTTP server. It is still the most popular web-server used worldwide today.php and php sqlite component: PHP is a server-side scripting language. PHP and its component will help you to interact with a backend mySQL database for your website.mySQL: mySQL is a database solution in which you shall be storing your data in the table.

If you have installed the above components, you can skip this part and move to the next part here.

​How To Setup A Web Server

Install Apache2

Apache is open-source web-server software that powers much of the web today. It is maintained by apache-http-project. Explore more here.​Open your terminal and type in commands –

sudo apt-get update sudo apt-get install apache2

To check if apache2 is installed properly –

sudo service apache2 restart

Open your web browser and open the link using ip–address of your server. If you are practicing locally, you can type in localhost or 127.0.0.1. By default, Apache runs on port 80. You need not provide the port number in your browser. 127.0.0.1 Or ip-address of your server. For example 198.162.12.52. It should show a message as it works! To change the port address, you need to edit the configuration file at /etc/apache2/ports.conf  and change the Listen 80 to your desired port number. After the edit, you need to restart the apache2 server. Restart web server –

sudo service apache2 restart

Install mySQL

MySQL is the database management solution that helps you to store and retrieve data in tables. Since we shall be using PHP in this tutorial, we will also need to install the php5-mysql component.

sudo apt-get install mysql-server php5-mysql

To check if MySQL is installed properly, open MySQL on terminal with the command –

mysql -uroot

If you set the password during installation, open with -p parameter –

mysql -uroot -p

Install PHP

PHP is an open-source web server scripting language. It is a back-end scripting language that will help you to interact with the MySQL database. For example, if you want to show the tabular employee list stored in your MySQL database on your website, with the help of PHP, you can interact with MySQL, retrieve the employee list and render it on the HTML page. The php5-mysql library helps you in this regard. PHP provides multiple auxiliary libraries for different needs. Php5-mysql is one among them, and we shall use that in our tutorial.​To search the available libraries.

apt-cache search php5-

To install PHP and php5-mysql.

sudo apt-get install php5 libapache2-mod-php5 php5-mcrypt sudo apt-get install php5-sqlite

To check if PHP is installed correctly, make file /var/www/html/info.php and add the following content to this file -​

Restart apache2

sudo service apache2 restart

​Open the web browser and navigate to 127.0.0.1/info.php. If you are using a remote server, replace IP with the server’s IP address. Upon success, you should see the following webpage – Well, that’s it. You are ready with the basic setup required for this tutorial. In the next section, we code a sample webpage in PHP that would store and retrieve the information in the MySQL table. Then we host it under apache2. If you like this tutorial, share the tutorial with your friends and let them set up their own web server. Continue reading to learn how to install WordPress on our own server.