bootstrap-rocky-8/install-lamp.sh
2024-08-27 00:46:46 +03:00

45 lines
733 B
Bash
Executable File

#!/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 <<EOF > /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