Kategorie: Linux

Vollständige Installation von Linux LAMP-Server, Apache, MySql, PHP Debian 9

Dieses Tutorial beschreibt, wie umfassend einen LAMP-Server oder Apache Basisdienste installieren, MySql, Php und phpMyAdmin.

Prok-für-Schritt werden wir alle Pakete installieren.

Wir beginnen mit den richtigen Server-Hostnamen einstellen:

nano /etc/hosts

und bearbeiten

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

Wir sind in der fetten Linie interessiert.
IP-Adresse nicht bewegen wir machen ändert nur die Hostnamen, die unseren Server sehen.

Wir bearbeiten Sie die Datei:

nano /etc/hostname

Ich wechsle die

node.serwerweb.pl

Um das gesamte System neu gestartet Server-Befehl zu ändern:

reboot

validieren den eingestellten Hostnamen:

hostname
hostname -f

Beide Befehle sollten uns auf den gleichen Wert zurück:
node.serwerweb.pl

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

Als nächstes führen wir das System-Update:

apt-get update
apt-get upgrade

Installieren MariaDB Datenbank-Engine

MariaDB:

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

Neukonfigurierung der MySQL-Server, wie durch Eingabe folgt:

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.

Geben Sie das aktuelle Passwort für root (Geben Sie für keine): <-- 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-Passwort? [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!


Standardmäßig, 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.

Entfernen Sie anonyme Benutzer? [Y / N] -- und
... Success!

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

Root-Anmeldung aus der Ferne verbieten? [Y / N] -- und
... Success!

Standardmäßig, 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.

Entfernen Sie die Testdatenbank und den Zugriff darauf? [Y / N] -- und
- 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.

Berechtigungstabellen jetzt neu laden? [Y / N] -- und
... 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!

installieren Sie Apache:

apt-get -y install apache2

PHP-Installation:

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

Starten Sie Apache neu um die Änderungen zu speichern:

Dienst Apache2 Neustart

Wir installieren die notwendigen PHP-Erweiterungen:

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

Auch wir Apache-Server neu starten, um die Änderungen zu speichern:

Dienst Apache2 Neustart

Die Installation des Cache für den Webserver:

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

Änderungen speichern:

Dienst Apache2 Neustart

Der letzte Schritt ist fraficzny phpMyAdmin Datenbank-Management-Schnittstelle in PHP geschrieben installieren.

apt-get -y install phpmyadmin

Und wir reagieren im Installer auf die Fragen:

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 ist verfügbar unter:

http://ADRESIPSERWERA/phpmyadmin/

Der letzte Schritt ist der Root-Benutzer die Möglichkeit zum Anmelden Phpmyadmin auszuführen:

Geben Sie den Befehl:

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

Wir geben das Root-Passwort ein und das war's 🙂

Das ist alles, was wir haben einen voll funktionsfähigen MySQL-Webserver

Linux

Zobacz komentarze

  • Wie die Apache debian aktualisieren 9? Server-Version: Apache / 2.4.25 (Debian) und dies ist eine Art der neuesten, und nur Version 2.4.26 Service ist http2

    • Hallo,

      Der einfachste Weg ist durch die Repo-Version Testen Wechsel:

      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-Repositories debian 9 und die obige Prüfung wlpejasz.

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

      Aktualisieren Sie auf neuere Pakete.
      So das Modul anwerfen:

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

Neue Beiträge

KeePass2 2.52 w Ubuntu 22.04

In der folgenden Anleitung wird beschrieben, wie Sie KeePass unter Ubuntu installieren. Całość wykonamy za pomocą kilku poleceń

2 years temu

Installieren des Master-PDF-Editors in Ubuntu 22.04

Master PDF Editor ist ein umfassendes PDF-Programm, die viele Funktionen enthält. Oprócz tworzenia i edycji

2 years temu

iotop - Speicherüberwachung

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

Führen Sie mehrere Befehle in einem Cron-Job aus

Sie können zwei oder mehr Befehle durch Semikolons trennen (;), Semikolon (;): służy do oddzielania

2 years temu

Ändern der Exif-Daten eines Fotos im Linux-Terminal

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

2 years temu

Installation von Rocket.Chat Server auf Rocky Linux 8

Die folgende Anleitung beschreibt, wie Rocket.Chat unter Rocky Linux installiert wird 8 Całość bardzo prosto zainstalujemy

2 years temu