Set Up a LAMP Web Server On A Raspberry Pi In 2023

1. Install Raspbian OS on your Raspberry Pi.

2. Connect your Raspberry Pi to the internet and update the OS.

3. Install Apache web server.

4. Install MySQL database server.

5. Install PHP.

6. Configure Apache to use PHP.

7. Create a MySQL database and user.

8. Create a web page using HTML, CSS, and PHP.

9. Test the web page on your Raspberry Pi.

10. Secure your web server with a firewall.

11. Install an SSL certificate to enable HTTPS.

12. Set up a virtual host for your web page.

13. Configure Apache to use the virtual host.

14. Test the web page on your Raspberry Pi.

15. Install a web application such as WordPress or Joomla.

16. Configure the web application.

17. Test the web application on your Raspberry Pi.

18. Install a web server monitoring tool.

19. Monitor the web server performance.

20. Make sure your web server is secure.

Setting up a web server can be useful for various projects. Unfortunately, it isn’t really straightforward, especially if you need PHP and a MySQL database. I’m also a web developer and have built many web projects, so I’m used to it. But I understand it may be overwhelming for some of you.
Let’s see how to set up a web server the right way.

Here are the required steps to set up a web server on a Raspberry Pi:

  • Install Linux, Raspberry Pi OS is recommended.
  • Install Apache, to answer HTTP requests.
  • Install PHP, and configure Apache to allow dynamic content.
  • Install MariaDB (MySQL), the most popular database server.

We’ll now learn how to complete each step in detail. I’ll also show you how to install and configure them to work together. And I’ll end this tutorial with some extra tips.

By the way, if you are really interested in improving your skills on Raspberry Pi, I highly recommend to check out my e-book here. It’s a 30-days challenge from beginner to master, with step-by-step tutorials and many projects to practice along the way.

Web Server Components: An Introduction

Before going deeper into the installation steps, I want to be sure that everyone understands what we are doing and how a web server works.

Note: If you want to see all these steps in action, I have a video lesson available for the community members. You can join here and watch it directly if you are interested (with 10+ other lessons for Raspberry Pi and many other benefits).

Apache

The main goal for the Apache service is to answer requests on HTTP and HTTPS ports of your Raspberry Pi.
HTTP and HTTPS are the main protocols on the Internet for web surfing.
It works because Apache is here to respond to your browser requests on ports 80 and 443.

When Apache receives a request on your Raspberry Pi IP address (ex: http://192.168.1.10), it has to display something, depending on your Apache configuration.
Typically, it’s an HTML page for your website or the app you’re using on the Raspberry Pi.

HTML page example

HTML is a language served by Apache and readable by your web browser to display web pages.

PHP

PHP is here to bring dynamic content to your web pages.
HTML is a static page language you can supercharge with PHP code to make your page look different depending on external conditions (visitor language, visitor history, time of the day, etc.).

Here’s what happens when a visitor sees your page:

  • PHP compiles the PHP code in your page (via an Apache module).
  • PHP generates a specific HTML code.
  • Apache always displays static HTML code, but this time PHP generates it before.

I’ll show you examples later in this post to better understand this part.

Adding PHP code in your HTML page, allowing dynamic content.

MySQL

MySQL is a database management system that allows you to host a database and store any data you need to keep on your site.
For example, on RaspberryTips, there is a database with all the posts, all the images links, all the comments, etc.

MySQL includes three parts:

  • A server: to store data in files and answer requests.
  • A client: to connect the server locally or remotely.
  • A specific language (SQL): to grab the needed data precisely (from PHP for example).

PHP includes functions allowing you to do requests to the MySQL database, and display them on your website.

MySQL is my favorite database management system, but other options are available, as listed in this article: Which Database Is Best For Raspberry Pi? (My Top 5).

Set Up A Web Server On Raspberry Pi

At this point, you should understand what each component is (Apache, PHP and MySQL), and if you need them or not.
If you want to create a basic and static web server, then Apache will be enough.
Or if you want dynamic pages but you don’t need to save data on the server, Apache and PHP will be enough.

I’ll let you make your choice and skip the unnecessary parts in the following process.

Step 1: Install And Update Your Operating System

To get started, here are the required prerequisites:

  • Install Raspberry Pi OS on your Raspberry Pi if not done already.
    Click on the link to read my full tutorial about this if needed. Any version is fine.
  • Create the default user and connect your device to the Internet.
  • Update your system to get the latest version of each package:
    sudo apt update
    sudo apt upgrade

Once done, you are ready to start with the installation of the first component of your web server: Apache.

Are you a bit lost in the Linux command line? Check this article first for the most important commands to remember, and a free downloadable cheat sheet so you can have the commands at your fingertips.

Step 2: Install Apache

The next step is to install Apache on your Raspberry Pi.
To do this, we can use APT, with this command:
sudo apt install apache2
Press “Y” to confirm the installation.

Once the installation completed, we’ll confirm that Apache is working:

  • Find your Raspberry Pi IP address.
    Click on the link if you don’t know how to do this.
  • Open your web browser and go to http://<RASPBERRY IP>.
    For example, http://192.168.1.18.
  • Check that a page like this appears:
    apache2 default page

As you can see in this page content, web pages are located under /var/www/html on the Raspberry Pi.
You can edit index.html to change this page or add new pages in the same folder.
You need administrator privileges to do this, so make sure to use “sudo” as a prefix for all of your commands (more details here).

Another option is to remove this page and just upload the files you want to share in this folder.
For example, if you just need to share files on your network, remove the index.html and put your files directly in /var/www/html, Apache will automatically generate a web page with links to each one.

Step 3: Install PHP

The next step is to install PHP to add dynamic content capabilities to our web server.

Installation

To install PHP, we need to add two packages:
sudo apt install php libapache2-mod-php

The first one adds the core packages for PHP and the possibility to run PHP scripts in a terminal.
The second one supercharges Apache with PHP capability, allowing us to put PHP code in our HTML pages.

First PHP page

Once PHP installed, we should check that everything is fine with our installation before going further.

Follow these steps to create a PHP file and test it in your browser:

  • Go to the Apache web folder:
    cd /var/www/html
  • Create a new PHP file:
    sudo nano test.php
  • Copy this code into it:
    <?php phpinfo(); ?>
    This is a basic PHP function to display PHP configuration in the browser.
  • Save and Exit (CTRL+O, CTRL+X).
  • Open this URL with your web browser: http://<RASPBERRY IP>/test.php.
  • This should display something like this:

If you see this page, everything is OK, Apache and PHP servers are installed correctly, and you can use HTML and PHP code in your pages.
Move to the next section if you need to use MySQL too.

Step 4: Install MySQL

The last component is MySQL, and again we’ll install it with APT:
sudo apt install mariadb-server php-mysql

The first package (mariadb-server) installs the main server for your MySQL databases.
The second package adds the possibility to use MySQL functions in your PHP code (like the link between Apache and PHP).

You need to restart Apache to add this functionality:
sudo service apache2 restart

I have a complete tutorial about MariaDB only if you want to learn more about this. But I’ll give you the quick version here.

Create your first MySQL user

MySQL stores data. Authentication is required to be sure that only allowed people can access these data.

For a quick start, we’ll create a MySQL superuser to use in our PHP code later.
But you can create as many users as you want with different privileges:

  • Log in to the MySQL console:
    sudo mysql
  • Create your first database:
    CREATE DATABASE test;
  • Create the first user:
    CREATE USER 'webuser' IDENTIFIED BY 'password';
    Try to use a strong password immediately, especially if you’ll forget to change it later.
  • Add all privileges to our test database to this user:
    GRANT ALL PRIVILEGES ON test.* To 'webuser'@'localhost' IDENTIFIED BY 'password';
  • Save the changes:
    FLUSH PRIVILEGES;
  • Quit the MySQL console:
    quit

Create a first table in the database

Now we have a test database and a test user. We’ll confirm that everything works fine by creating a first table in the database to use later in the PHP code.

If you’re new with these database words, imagine the database as an Excel spreadsheet and a table as a tab in this spreadsheet. We’ll store data in this table.

  • Go back to the MySQL console, but with the “webuser” this time:
    mysql -uwebuser -ppassword test
  • Create a basic table:
    CREATE TABLE IF NOT EXISTS test ( line_id INT AUTO_INCREMENT, data VARCHAR(255) NOT NULL, PRIMARY KEY (line_id) );
    Obviously, this is a basic useless table, if you want to use anything else you can.
    Press ENTER after pasting the request.
  • Insert one line in this new table:
    INSERT INTO test (data) VALUES ("This is a test string in my database");
    We add a first line in your table, with the test sentence in the data field.
    Yes, I’m very creative with this.
  • Exit:
    quit

Now we’re ready to move to the PHP code.
We have all we need (database, table and user).

First PHP script to connect to MySQL

After all these preparation steps we can now check if PHP can speak with MySQL:

  • Go to the Apache folder:
    cd /var/www/html
  • Create a new PHP file:
    sudo nano test-mysql.php
  • Paste these lines into it:
    <?php
    $link = mysqli_connect("127.0.0.1", "webuser", "password", "test");
    if($link) {
    $query = mysqli_query($link, "SELECT * FROM test");
    while($array = mysqli_fetch_array($query)) {
    echo $array['data']."<br />";
    } }
    else {
    echo "MySQL error :".mysqli_error();
    }
    ?>

    You may need to edit the first line to fit your first user login and password.
    I won’t do a PHP lesson here, but basically, this script tries to connect to your MySQL server and read the “test” table. If successful, it displays all the content of the “test” table in your web browser.
  • Save and Exit (CTRL+O, CTRL+W).
  • Switch to your web browser and check the URL: http://<RASPBERRY IP>/test-mysql.php.
    This should display the content of your database table.

Here we are, you know how to install a basic web server and create a first page to connect to MySQL and display something from your database.
Feel free to adapt the database and the PHP code to fit your needs.

Extra tips

I’ll give you two extra tips to improve your web server or to make it easier to manage.

PHPMyAdmin

Previously in this post, we made all the changes in the MySQL database manually, doing the SQL requests directly to create users, grant access or insert data.
But there is a popular tool to do this faster and intuitively: PHPMyAdmin.
It’s a free tool that provides a web interface to manage your MySQL server.

To install PHPMyAdmin, follow these steps:

  • Install the package with apt:
    sudo apt install phpmyadmin
  • During the installation process, select these options:
    • Select Apache2 (press space and then enter).
    • Configure the database for PHPMyAdmin with db-common: No
  • After the installation, go to http://<RASPBERRY IP>/phpmyadmin.
  • Log in with the user created previously.
  • You’ll find your database in the left menu, with the table inside and the data on the right.
    Something like this:
  • You’ll also find an intuitive menu to do everything within your database.

Virtual Hosts

If you want to host several websites or apps in your Raspberry Pi, you have two choices:

  • Use one folder for each app, like http://192.168.1.1/app1 and http://192.168.1.1/app2.
  • Use virtual hosts to have an address like http://app1.domain.com and http://app2.domain.com.

For the first option, just create as many folders as you need in /var/www/html.
For the second one, you need to:

  • Add subdomains in your DNS server or in your hosts file.
  • Create virtual hosts in the Apache configuration, one for each subdomain.

You can make this configuration in the /etc/apache2/sites-enabled/ folder.
You’ll find all the help you need on this page for example.

If you are looking for exclusive tutorials, I post a new course each month, available for premium members only. Join the community to get access to all of them right now!

Conclusion

I hope this article will help you to install a basic web server on your Raspberry Pi.
I think this is rather a beginner how-to guide, and I could write a lot more on this topic.
If you are interested, I’ll create other posts on Apache/PHP/MySQL to help you master these main services on Linux.

These other tutorials might be interesting to continue your project:

Also, if your website is kind of essential, like with real applications that need to be accessible at all time, and remote users, it’s probably a good idea to put something in place to monitor it. You can read my article on the topic here: The Definitive Guide To Monitor A Website On Raspberry Pi

Additional Resources

Not sure where to start?
Understand everything about the Raspberry Pi, stop searching for help all the time, and finally enjoy completing your projects.
Watch the Raspberry Pi Bootcamp course now.

Master your Raspberry Pi in 30 days
Don’t want the basic stuff only? If you are looking for the best tips to become an expert on Raspberry Pi, this book is for you. Learn useful Linux skills and practice multiple projects with step-by-step guides.
Download the e-book.

VIP Community
If you just want to hang out with me and other Raspberry Pi fans, you can also join the community. I share exclusive tutorials and behind-the-scenes content there. Premium members can also visit the website without ads.
More details here.

Need help building something with Python?
Create, understand, and improve any Python script for your Raspberry Pi.
Learn the essentials step-by-step without losing time understanding useless concepts.
Get the e-book now.

You can also find all my recommendations for tools and hardware on this page.

Set Up a LAMP Web Server On A Raspberry Pi In 2023

Setting up a LAMP web server on a Raspberry Pi in 2023 is a great way to get started with web development. With the Raspberry Pi’s low cost and small size, it’s an ideal platform for creating a web server. In this guide, we’ll show you how to set up a LAMP web server on a Raspberry Pi in 2023.

What is a LAMP Web Server?

A LAMP web server is a combination of software that allows you to host websites and web applications. The acronym stands for Linux, Apache, MySQL, and PHP. Linux is the operating system, Apache is the web server, MySQL is the database, and PHP is the programming language.

Step 1: Install Raspbian

The first step is to install the Raspbian operating system on your Raspberry Pi. Raspbian is a Linux-based operating system specifically designed for the Raspberry Pi. You can download the latest version of Raspbian from the Raspberry Pi website.

Step 2: Install Apache

Once you have Raspbian installed, you can install Apache. Apache is the web server software that will be used to serve your web pages. To install Apache, open a terminal window and type the following command:

sudo apt-get install apache2

Once the installation is complete, you can test that Apache is working by opening a web browser and navigating to http://localhost/. You should see a page that says “It works!”

Step 3: Install MySQL

The next step is to install MySQL. MySQL is the database software that will be used to store your website’s data. To install MySQL, open a terminal window and type the following command:

sudo apt-get install mysql-server

Once the installation is complete, you can test that MySQL is working by typing the following command:

mysql -u root -p

You should be prompted for a password. Enter the password you set during the installation process and you should be logged in to the MySQL command line.

Step 4: Install PHP

The final step is to install PHP. PHP is the programming language that will be used to create your web pages. To install PHP, open a terminal window and type the following command:

sudo apt-get install php7.0

Once the installation is complete, you can test that PHP is working by creating a file called “test.php” in the /var/www/html directory. Add the following code to the file:

<?php
echo "It works!";
?>

Save the file and then open a web browser and navigate to http://localhost/test.php. You should see a page that says “It works!”

Conclusion

Setting up a LAMP web server on a Raspberry Pi in 2023 is a great way to get started with web development. With the Raspberry Pi’s low cost and small size, it’s an ideal platform for creating a web server. In this guide, we’ve shown you how to set up a LAMP web server on a Raspberry Pi in 2023.

Jaspreet Singh Ghuman

Jaspreet Singh Ghuman

Jassweb.com/

Passionate Professional Blogger, Freelancer, WordPress Enthusiast, Digital Marketer, Web Developer, Server Operator, Networking Expert. Empowering online presence with diverse skills.

jassweb logo

Jassweb always keeps its services up-to-date with the latest trends in the market, providing its customers all over the world with high-end and easily extensible internet, intranet, and extranet products.

Contact
San Vito Al Tagliamento 33078
Pordenone Italy
Item added to cart.
0 items - 0.00
Open chat
Scan the code
Hello 👋
Can we help you?