Wednesday, February 16, 2022

How To Deploy Adminer on Rocky Linux 8.5

 in This Tutorial you will Learn " How To install Adminer on Rocky Linux 8.5"
Adminer (formerly phpMinAdmin) is a full-featured database management tool written in PHP.
Homepage - https://www.adminer.org/en/
_________________________________________________________________________________________
Server - Os:  Rocky Linux 8.5  64Bit      | IP -192.168.1.60        |Hostname - server.yourdomain.com
_________________________________________________________________________________________
cat /etc/system-release ; hostname ; hostname -I ; dnf groupinstall "Development Tools" -y
dnf install httpd httpd-tools mariadb-server mariadb php php-opcache php-gd php-curl php-mysqlnd php-json -y
systemctl enable httpd mariadb php-fpm ; systemctl start httpd mariadb php-fpm
mysql_secure_installation
firewall-cmd --permanent --zone=public --add-service=http
firewall-cmd --permanent --zone=public --add-service=https
firewall-cmd --reload
systemctl restart httpd

cd /var/www/html/
wget https://github.com/vrana/adminer/releases/download/v4.8.1/adminer-4.8.1.php
mv adminer-4.8.1.php index.php
127.0.0.1/index.php
_________________________________________________________________________________________

No comments:

Post a Comment