Installazione ambiente LAMP (Linux Apache MariaDB PHP) su Ubuntu Server 20

In questo articolo andremo a descrivere come installare un ambiente LAMP (Linux Apache MariaDB PHP) su Ubuntu Server 20.

Consideriamo di utilizzare una macchina Ubuntu Server 20 ( qui l’ articolo dell’ installazione) ed aggiorniamola

sudo apt update

sudo apt upgrade

iniziamo installando il web server Apache

sudo apt install apache2 apache2-utils

avviamo ed abilitiamo l’avvio automatico

sudo systemctl start apache2

sudo systemctl enable apache2

avremo che la versione al momento della stesura dell’ articolo è

apache2 -v

Server version: Apache/2.4.41 (Ubuntu)

per avere evidenza che il tutto funzioni accediamo da un browser qualsiasi http://ip_server ed avremo

Installazione LAMP Ubuntu 20

adesso installiamo il database MariaDB

sudo apt install mariadb-server mariadb-client

come fatto per Apache, avviamo MariaDB e abilitiamo l’avvio automatico al boot

sudo systemctl start mariadb

sudo systemctl enable mariadb

rendiamo sicuro il database MariaDB seguendo le richieste da parte del comando di seguito

sudo mysql_secure_installation

NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MariaDB
SERVERS IN PRODUCTION USE! PLEASE READ EACH STEP CAREFULLY!

In order to log into MariaDB to secure it, we’ll need the current
password for the root user. If you’ve just installed MariaDB, and
you haven’t set the root password yet, the password will be blank,
so you should just press enter here.

Enter current password for root (enter for none):Prima volta fare INVIO in quanto la password è vuota

OK, successfully used password, moving on…

Setting the root password ensures that nobody can log into the MariaDB
root user without the proper authorisation.

Set root password? [Y/n]Y

impostiamo la nuova password

New password:Inserire la password
Re-enter new password:
Password updated successfully!
Reloading privilege tables..
… Success!

By default, a MariaDB installation has an anonymous user, allowing anyone
to log into MariaDB without having to have a user account created for
them. This is intended only for testing, and to make the installation
go a bit smoother. You should remove them before moving into a
production environment.

Remove anonymous users? [Y/n]Y

disabilitiamo l’accesso remoto all’ utente root

Normally, root should only be allowed to connect from ‘localhost’. This
ensures that someone cannot guess at the root password from the network.

Disallow root login remotely? [Y/n]Y

rimuoviamo il database di test

By default, MariaDB comes with a database named ‘test’ that anyone can
access. This is also intended only for testing, and should be removed
before moving into a production environment.

Remove test database and access to it? [Y/n]Y

applichiamo le nuove modifiche

Reloading the privilege tables will ensure that all changes made so far
will take effect immediately.

Reload privilege tables now? [Y/n]Y

All done! If you’ve completed all of the above steps, your MariaDB
installation should now be secure.

Thanks for using MariaDB!

in questa maniera abbiamo reso robusto il server database MariaDB.

Adesso installiamo il PHP 7.4 e le librerie per il collegamento con Apache e MariaDB

sudo apt install php7.4 libapache2-mod-php7.4 php7.4-mysql

verifichiamo che il tutto funzioni creando una pagina web in php, il famoso Phpinfo

sudo vim /var/www/html/info.php

ed inseriamo il seguente codice

<?php phpinfo(); ?>

avremo che accedendo dal browser al seguente indirizzo http://ip_server/info.php

Installazione LAMP Ubuntu 20

Potrebbero interessarti anche...