Kategorie: Linux

Installazione completa di server LAMP Linux, Apache, MySql, PHP Debian 9

Questo tutorial descrive come installare un server LAMP completo o di servizi di base Apache, MySql, Php e phpmyadmin.

Prok-by-step che installerà tutti i pacchetti.

Iniziamo impostando il nome host del server corretto:

nano /etc/hosts

E noi modifichiamo

127.0.0.1       localhost.localdomain   localhost
94.130.246.172   node.serwerweb.pl     node

# The following lines are desirable for IPv6 capable hosts
::1     localhost ip6-localhost ip6-loopback
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters

Siamo interessati a questa linea audace.
Non spostiamo l'indirizzo IP, cambiamo solo il nome host che sarà visibile al nostro server.

Modifichiamo anche il file:

nano /etc/hostname

E cambiamo in

node.serwerweb.pl

Per cambiare l'intero sistema, riavviamo il server con il comando:

reboot

stiamo verificando la correttezza del set di nomi host:

hostname
hostname -f

Entrambi i comandi dovrebbero restituirci lo stesso valore:
node.serwerweb.pl

root@node:/tmp# hostname
node.serwerweb.pl
root@node:/tmp# hostname -f
node.serwerweb.pl

Quindi eseguiamo l'aggiornamento del sistema:

apt-get update
apt-get upgrade

Stiamo installando il motore di database mariadb

MariaDB:

apt-get -y install mariadb-server mariadb-client

Riconfiguriamo il server mysql come segue inviando il comando:

mysql_secure_installation

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.

Inserire password corrente per root (entrare per nessuno): <-- Hit return
OK, successfully used password, moving on...

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

Imposta password di root? [S / N] -- y
New password: <-- Enter the new password for the MariaDB root user
Re-enter new password: <-- Enter the password again
Password updated successfully!
Reloading privilege tables..
... Success!


Per impostazione predefinita, 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.

Rimuovere gli utenti anonimi? [S / N] -- e
... Success!

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

Non consentire l'accesso root in remoto? [S / N] -- e
... Success!

Per impostazione predefinita, 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.

Rimuovere il database di test e accedervi? [S / N] -- e
- Dropping test database...
... Success!
- Removing privileges on test database...
... Success!

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

Ricarica ora le tabelle dei privilegi? [S / N] -- e
... Success!

Cleaning up...

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

Thanks for using MariaDB!

Installiamo il server Apache:

apt-get -y install apache2

L'installazione di PHP:

apt-get -y install php7.0 libapache2-mod-php7.0

Riavviamo il server Apache per salvare le modifiche:

riavvio del servizio apache2

Installiamo le estensioni php necessarie:

apt-cache search php7.0
apt-get -y install php7.0-mysql php7.0-curl php7.0-gd php7.0-intl php-pear php-imagick php7.0-imap php7.0-mcrypt php-memcache php7.0-pspell php7.0-recode php7.0-sqlite3 php7.0-tidy php7.0-xmlrpc php7.0-xsl

Riavviamo il server apache per salvare le modifiche:

riavvio del servizio apache2

Installazione della cache per il server www:

apt-get -y install php7.0-opcache
apt-get -y install php-apcu

Salviamo le modifiche:

riavvio del servizio apache2

L'ultimo passo è l'installazione di PHPMYADMIN, un'interfaccia grafica di gestione del database scritta in php.

apt-get -y install phpmyadmin

E rispondiamo alle domande nel programma di installazione:

Web server to reconfigure automatically: <-- apache2
Configure database for phpmyadmin with dbconfig-common?<-- Yes
Password of the database's administrative user: <-- Podajemy wcześciej ustalone hasło przy instalacji mysql/mariadb
MySQL application password for phpmyadmin: <-- Ponownie podajemy hasło ustalone wcześniej

PhpMyAdmin è disponibile all'indirizzo:

http://ADRESIPSERWERA/phpmyadmin/

L'ultimo passaggio è abilitare l'accesso dell'utente root a phpmyadmin:

diamo l'ordine:

eco "UPDATE mysql.user SET plugin = 'mysql_native_password' WHERE user = 'root' AND plugin = 'unix_socket';PRIVILEGI FLUSH;" | mysql -u root -p

Inseriamo la password di root e il gioco è fatto 🙂

Questo è tutto ciò che abbiamo un server web mysql completamente funzionante

Linux

Zobacz komentarze

  • Come aggiornare apache in debian 9? Versione del server: Apache / 2.4.25 (Debian) e questo è presumibilmente l'ultimo, e solo dalla versione 2.4.26 è il supporto http2

    • Ciao,

      È più semplice cambiare il repository alla versione di prova:

      apt install curl wget apt-transport-https dirmngr
      nano /etc/apt/sources.list
      ###### Debian Main Repos
      deb http://deb.debian.org/debian/ testing main contrib non-free
      deb-src http://deb.debian.org/debian/ testing main contrib non-free
      
      deb http://deb.debian.org/debian/ testing-updates main contrib non-free
      deb-src http://deb.debian.org/debian/ testing-updates main contrib non-free
      
      deb http://deb.debian.org/debian-security testing/updates main
      deb-src http://deb.debian.org/debian-security testing/updates main

      Hashing dei repository debian 9 e hai anche i test di cui sopra.

      update apt-get
      sudo apt-get install -y -t testing apache2

      Ti aggiornerò ai pacchetti più recenti.
      E tu avvii il modulo:

      sudo a2enmod http2
      sudo apachectl -t && sudo systemctl restart apache2
Udostępnij
Opublikowane przez
Linux

Post recenti

KeePass2 2.52 w Ubuntu 22.04

La guida seguente descrive come installare KeePass su Ubuntu. Całość wykonamy za pomocą kilku poleceń

2 years temu

Installazione dell'editor PDF Master in Ubuntu 22.04

Master PDF Editor è un programma PDF completo, che include molte funzionalità. Oprócz tworzenia i edycji

2 years temu

iotop - monitoraggio della memoria

Iotop jest prostym narzędziem dla systemów Uniksowych umożliwiającym monitorowanie użycia dowolnego nośnika pamięci flash/hdd/ssd w

2 years temu

Esegui più comandi in un lavoro cron

Puoi separare due o più comandi con il punto e virgola (;), Punto e virgola (;): służy do oddzielania

2 years temu

Modifica dei dati exif di una foto nel terminale Linux

Poniższy poradnik opisuje w jaki sposób za pomocą konsoli możemy dokonać edycji danych zdjęcia exif.

2 years temu

Installazione di Rocket.Chat Server su Rocky Linux 8

La seguente guida descrive come installare Rocket.Chat su Rocky Linux 8 Całość bardzo prosto zainstalujemy

2 years temu