Introduction:
In this step-by-step guide, we will walk you through the process of setting up a LAMP (Linux, Apache, MySQL, PHP) server with phpMyAdmin on your Raspberry Pi. LAMP is a popular web development stack that allows you to host dynamic websites and web applications on your Raspberry Pi. With phpMyAdmin, a web-based MySQL administration tool, managing your MySQL databases becomes much more straightforward.
Before we proceed, please ensure you have a Raspberry Pi with Raspbian (or a compatible Linux-based operating system) installed and have access to the command line interface. This guide assumes that you have basic knowledge of using the terminal and working with Linux commands.
Let’s get started with the installation and configuration of the LAMP stack and phpMyAdmin on your Raspberry Pi!
- Install Apache and PHP:
- If the installation fails, add the Raspbian repository and update:
Add the following line to the end of the file:
[code]deb http://raspbian.raspberrypi.org/raspbian/ buster main contrib non-free rpi[/code]Save and exit the text editor. Then update the package list:
[code]sudo apt update[/code]- Remove the default index.html and restart Apache:
- Install MariaDB and PHP MySQL module:
- Secure the MariaDB installation:
Follow the prompts to set the root password and answer the security-related questions.
- Create a new MySQL user and grant privileges:
Enter the root password when prompted and then run the following MySQL commands:
[code] > create user admin@localhost identified by 'root'; > grant all privileges on *.* to admin@localhost; > FLUSH PRIVILEGES; > exit; [/code]- Install phpMyAdmin and enable mysqli extension:
- Create a symbolic link to phpMyAdmin in the webserver’s root directory:
- Set appropriate ownership and permissions for the web server:
Add the following lines within the [code]<directory> [/code] section, just before the closing [code]</directory>[/code] tag:
[code] <Directory "/var/www/html"> AllowOverride All </Directory> [/code]Save and exit the text editor.
- Restart Apache to apply the changes:
Your Raspberry Pi now has a LAMP server with phpMyAdmin installed. Enjoy your web hosting setup!
hello
Thank you for the tutorial which I followed step by step, but it unfortunately did not work for me as /etc/apache2/sites-available/000-default.conf
did not contain a section