Kategorie: Linux

Pełna instalacja serwera LAMP Linux, Apache, MySql, PHP Debian 9

Ten poradnik opisuje jak kompleksowo zainstalować serwer LAMP czyli podstawowe usługi Apache, MySql, PHP oraz phpmyadmin.

Prok po kroku dokonamy instalacji wszystkich pakietów.

Zaczynamy od ustawienia poprawnego hostname serwera:

nano /etc/hosts

I edytujemy

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

Interesuje nas ta pogrubiona linijka.
Adresu IP nie ruszamy dokonujemy jedynie zmiany hostname jakim będzie widoczny nasz serwer.

Edytujemy również plik:

nano /etc/hostname

I zmieniamy na

node.serwerweb.pl

W celu zmian w całym systemie restartujemy serwer poleceniem:

reboot

sprawdzamy poprawność ustawionego hostname:

hostname
hostname -f

Obydwa polecenia powinny nam zwrócić tą sąmą wartość:
node.serwerweb.pl

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

Następnie wykonujemy aktualizację systemu:

apt-get update
apt-get upgrade

Instalujemy silnik baz danych mariadb

MariaDB:

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

Re-konfigurujemy serwer mysql w następujący sposób wydając polecenie:

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.

Enter current password for root (enter for none): <-- 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.

Set root password? [Y/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!


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
... Success!

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
... Success!

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
- 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.

Reload privilege tables now? [Y/n] -- y
... 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!

Instalujemy serwer Apache:

apt-get -y install apache2

Instalacja PHP:

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

Restartujemy serwer Apache w celu zapisania zmian:

service apache2 restart

Instalujemy niezbędne rozszerzenia php:

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

Ponownie wykonujemy restart serwera apache w celu zapisania zmian:

service apache2 restart

Instalacja cache dla serwera www:

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

Zapisujemy zmiany:

service apache2 restart

Ostatnim krokiem jest instalacja PHPMYADMIN fraficzny interfejs zarządzania bazami danych napisany w php.

apt-get -y install phpmyadmin

I odpowiadamy na pytania w instalatorze:

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 dostępny jest pod adresem:

http://ADRESIPSERWERA/phpmyadmin/

Ostatni krok to uruchomienie możliwości logowania użytkownika root do phpmyadmin:

wydajemy polecenie:

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

Wpisujemy hasło root i to wszystko 🙂

To wszystko mamy w pełni działający serwer www z mysql 😉

Linux

Zobacz komentarze

  • Jak zaktualizować apache w debianie 9? Server version: Apache/2.4.25 (Debian) i to jest niby najnowsze, a dopiero od wersji 2.4.26 jest obsługa http2

    • Hej,

      Najprościej będzie zmieniając repo na te z wersji testing:

      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

      Haszujesz repozytoria debian 9 i wlpejasz te wyżej testinga.

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

      Zaktualizuje ci pakiety do nowszych.
      No i odpalasz moduł:

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

Najnowsze wpisy

KeePass2 2.52 w Ubuntu 22.04

Poniższy poradnik opisuje sposób instalacji KeePass w systemie Ubuntu. Całość wykonamy za pomocą kilku poleceń…

2 lata temu

Instalacja Master PDF editor w Ubuntu 22.04

Master PDF Editor to wszechstronny program PDF, który zawiera wiele funkcji. Oprócz tworzenia i edycji…

2 lata temu

iotop – monitorowanie pamięci

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 lata temu

Uruchomienie wiele poleceń w jednym zadaniu Cron

Możesz oddzielić dwa lub więcej poleceń za pomocą średników (;), Średnik (;): służy do oddzielania…

2 lata temu

Zmiana danych exif zdjęcia w terminalu Linux

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

2 lata temu

Instalacja Rocket.Chat Server w systemie Rocky Linux 8

Poniższy poradnik opisuje sposób instalacji Rocket.Chat W systemie Rocky Linux 8 Całość bardzo prosto zainstalujemy…

2 lata temu