From ad33a753f25ced9095309833f12d139849820610 Mon Sep 17 00:00:00 2001 From: root Date: Tue, 27 Aug 2024 00:46:46 +0300 Subject: [PATCH] Added lamp installation --- install-lamp.sh | 44 ++++++++++++++++++++++++++++++++++++++++++++ lamp-packages.txt | 21 +++++++++++++++++++++ 2 files changed, 65 insertions(+) create mode 100755 install-lamp.sh create mode 100644 lamp-packages.txt diff --git a/install-lamp.sh b/install-lamp.sh new file mode 100755 index 0000000..33361fd --- /dev/null +++ b/install-lamp.sh @@ -0,0 +1,44 @@ +#!/usr/bin/env bash + +set -x + +dnf install -y epel-release + +crb enable + +dnf install -y epel-release + +dnf install -y atop htop iptstate conntrack-tools + +dnf -y module reset php +dnf -y module install php:8.2 + +dnf -y module reset mariadb +dnf -y module install mariadb:10.11 + +dnf -y module reset ruby +dnf -y module install ruby:3.1 + +dnf install -y $( cat lamp-packages.txt ) + +true | pecl install redis + +cat < /etc/php.d/99-redis.ini +; Enable REDIS extension module +extension=redis.so +EOF + +firewall-cmd --add-service=http +firewall-cmd --add-service=https +firewall-cmd --reload + +systemctl restart httpd +systemctl restart php-fpm + +systemctl restart redis +systemctl restart mariadb + +systemctl enable httpd php-fpm redis mariadb + + +set +x diff --git a/lamp-packages.txt b/lamp-packages.txt new file mode 100644 index 0000000..467a0ff --- /dev/null +++ b/lamp-packages.txt @@ -0,0 +1,21 @@ +httpd +php-gd +php-soap +php-intl +php-mysqlnd +php-pdo +php-pecl-zip +php-fpm +php-opcache +php-curl +php-zip +php-xml +php-pear +php-devel +redis +wget +curl +jq +mariadb-server +mariadb +