Skip to content

Instantly share code, notes, and snippets.

@nasrulhazim
Last active July 1, 2024 09:11
Show Gist options
  • Save nasrulhazim/2b438bd4ffeeac4a1b7616a7accc0463 to your computer and use it in GitHub Desktop.
Save nasrulhazim/2b438bd4ffeeac4a1b7616a7accc0463 to your computer and use it in GitHub Desktop.
Install PHP 8.3, NGINX, Redis, Git and Composer in Rocky Linux

copy code snippet and create a file anywhere in your server:

cd ~
mkdir scripts
cd scripts
touch install-app-dependencies
chmod +x install-app-dependencies

paste the copied codes in the ~/scripts/install-app-dependencies, then save.

Do take note to update your Redis Password as well in above script before run it.

Run the script to install all dependencies.

#!/bin/bash
# Update and install EPEL repository
sudo yum update -y
sudo yum install -y epel-release
# Add the Remi repository for PHP 8.3
sudo yum install -y https://rpms.remirepo.net/enterprise/remi-release-8.rpm
# Enable PHP 8.3 module
sudo dnf module reset php -y
sudo dnf module enable php:remi-8.3 -y
# Install PHP 8.3 and necessary extensions
sudo yum install -y php php-cli php-fpm php-mysqlnd php-pdo php-gd php-mbstring php-xml php-curl php-bcmath php-json php-zip php-tokenizer php-redis php-process php-pcntl php-pgsql
# Install Redis
sudo yum install -y redis
# Configure Redis to require a password
REDIS_PASSWORD="your_secure_password"
sudo sed -i "s/^# requirepass .*/requirepass $REDIS_PASSWORD/" /etc/redis/redis.conf
# Start and enable Redis
sudo systemctl enable redis
sudo systemctl start redis
# Install Supervisord
sudo yum install -y supervisor
# Start and enable Supervisord
sudo systemctl enable supervisord
sudo systemctl start supervisord
# Install Git
sudo yum install -y git
# Install Nginx
sudo yum install -y nginx
# Start and enable Nginx
sudo systemctl enable nginx
sudo systemctl start nginx
php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');"
php -r "if (hash_file('sha384', 'composer-setup.php') === 'dac665fdc30fdd8ec78b38b9800061b4150413ff2e3b6f88543c636f7cd84f6db9189d43a81e5503cda447da73c7e5b6') { echo 'Installer verified'; } else { echo 'Installer corrupt'; unlink('composer-setup.php'); } echo PHP_EOL;"
php composer-setup.php
php -r "unlink('composer-setup.php');"
sudo mv composer.phar /usr/local/bin/composer
# Verify installations
php -v
redis-cli -a $REDIS_PASSWORD ping
supervisord -v
git --version
nginx -v
composer --version
echo "PHP 8.3, Redis with password, Supervisord, Git, Nginx and Composer installation complete."
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment