LAMP Web Server Part 5 Install MariaDB

Опубликовано: 04 Август 2026
на канале: William Campbell
2,173
51

Video series showing steps to make a web server in VirtualBox.
Part 5 is how to install MariaDB.

Video series part 1 Install Debian:    • LAMP Web Server Part 1 Install Debian  
Video series part 2 Install Webmin:    • LAMP Web Server Part 2 Install Webmin  
Video series part 3 Install Apache:    • LAMP Web Server Part 3 Install Apache  
Video series part 4 VirtualBox Guest Additions:    • LAMP Web Server Part 4 VirtualBox Guest Ad...  
Video series part 6 Install PHP:    • LAMP Web Server Part 6 Install PHP  
Video series part 7 Install phpMyAdmin:    • LAMP Web Server Part 7 Install phpMyAdmin  
Video series part 8 Dynamic DNS:    • LAMP Web Server Part 8 Dynamic DNS  

Also see Apache Add Virtual Hosts:    • Apache Add Virtual Hosts To LAMP Web Server  

How To Install And Configure Windows Terminal:    • Windows Terminal Install and Configure  

Commands/text to copy, edit, and paste:
(replace 'password' with actual password)
---------------------------------------

sudo apt update

sudo apt install mariadb-server

sudo mysql_secure_installation

GRANT ALL ON . TO 'admin'@'localhost' IDENTIFIED BY 'password' WITH GRANT OPTION;

FLUSH PRIVILEGES;

EXIT;