Difference between revisions of "WebServer - Basic LAMP Stack Install"
Jump to navigation
Jump to search
Line 11: | Line 11: | ||
*<code>sudo mysql_secure_installation</code> | *<code>sudo mysql_secure_installation</code> | ||
+ | **Configuring mysql-community-server | ||
+ | ***Pick a good '''root''' password... | ||
*([[WebServer - MySQL Notes|Extra Instructions if you've never configured MySQL before]]) | *([[WebServer - MySQL Notes|Extra Instructions if you've never configured MySQL before]]) | ||
Revision as of 16:55, 13 July 2020
- Proven on Mint 19.3
- Proven on SparkyLinux 5.11 ... (You'll have to fix the missing MySQL thing & install vim first)
Contents
Install the LAMP Stack
sudo apt install apache2 libapache2-mod-php php-xml php-mbstring php-apcu php-intl imagemagick inkscape php-gd php-cli php-cgi php mysql-server mysql-client php-mysql
- Say Yes to Continue
Configure MySQL
sudo mysql_secure_installation
- Configuring mysql-community-server
- Pick a good root password...
- Configuring mysql-community-server
- (Extra Instructions if you've never configured MySQL before)
& Test it
sudo vi /var/www/html/info.php
<?php phpinfo(); ?>
Browse to http://ServerAddress/ & you should see the default page.
Browse to http://ServerAddress/info.php & you should see a whole bunch of info about your PHP subsystem.
Set up at least one user in mysql
sudo mysql -u root -p
CREATE USER 'someone'@'localhost' IDENTIFIED BY 'password'; EXIT;
(Hint: This'd be a good time to create yourself as that user with your non-admin password of choice...)