Joomla! 4 installieren (AlmaLinux/CentOS)

Aus RT-Wiki - IT-Notizbuch
Zur Navigation springen Zur Suche springen


Vorbereitungen

Feste IP

vi /etc/sysconfig/network-scripts/ifcfg-ens18
TYPE=Ethernet
PROXY_METHOD=none
BROWSER_ONLY=no
BOOTPROTO=none
DEFROUTE=yes
IPV4_FAILURE_FATAL=no
IPV6INIT=no
NAME=ens18
UUID=0590fcc0-a435-4d8b-8bf9-2953e7845536
DEVICE=ens18
ONBOOT=yes
IPV6_DISABLED=yes
IPADDR=192.168.2.30
PREFIX=24
GATEWAY=192.168.2.1
DNS1=192.168.2.1
DNS2=1.1.1.1
IPV6_DEFROUTE=yes
IPV6_FAILURE_FATAL=no

Anforderungen/Abhängigkeiten

dnf install wget tar epel-release
dnf update

PHP 8.0 und Apache installieren / https://tecadmin.net/how-to-install-php-8-on-centos-rhel-8/

dnf module enable php:8.0 -y
dnf install httpd php php-cli php-common php-mysqlnd php-intl php-gd php-pecl-zip

Webserver starten

systemctl enable --now httpd

Firewall konfigurieren

firewall-cmd --permanent --add-service=http
firewall-cmd --reload

SELinux / php-fpm erlauben Dateien anzulegen

chcon -R -t httpd_sys_rw_content_t /var/www/html
setsebool httpd_can_network_connect 1

MySQL

dnf install mysql-server

Starten

systemctl enable --now mysqld

Sichern

mysql_secure_installation
  • VALIDATE PASSWORD COMPONENT -> Kann Nein, je nach Wunsch (Überprüft Passwörter auf stärke)
  • ROOT PASSWORD setzen -> Ein sicheres Passwort eingeben
  • REMOVE ANONYMOUS USERS -> Ja
  • DISALLOW ROOT LOGIN REMOTELY -> Ja
  • REMOVE TEST DATABASE -> Ja
  • RELOAD PRIVILEGE TABLES -> Ja


php.ini anpassen / https://docs.joomla.org/J3.x:Installing_Joomla/de#Empfohlene_Einstellungen_in_der_PHP.ini

vi /etc/php.ini
memory_limit = 128M //RAM Nutzung
upload_max_filesize = 30M //Dateiuploads Max. Größe
post_max_size = 30M //Max. Größe Daten per HTTP-POST - Mindestens wie upload_max_filesize
max_execution_time = 30 //Timeout für PHP Skripte in Sekunden
output_buffering = off
systemctl restart httpd
systemctl restart php-fpm

Joomla installieren / https://docs.joomla.org/J3.x:Installing_Joomla/de

Herunterladen

https://downloads.joomla.org/de/latest

wget https://downloads.joomla.org/de/cms/joomla4/4-2-5/Joomla_4-2-5-Stable-Full_Package.tar.gz

Entpacken

tar -xf Joomla_4-2-5-Stable-Full_Package.tar.gz -C /var/www/html/

Berechtigung setzen

chown apache: -R /var/www/html

Datenbank erstellen / https://docs.joomla.org/Creating_a_Database_for_Joomla!/de

mysql -uroot -p
CREATE DATABASE db_joomla;
CREATE USER 'joomla'@'localhost' IDENTIFIED BY 'password';
GRANT ALL PRIVILEGES ON db_joomla.* TO 'joomla'@'localhost';
EXIT;

Konfiguration starten

https://<Server-IP>