๐ฌ mysql 8.0.x
dnf install -y https://dev.mysql.com/get/mysql80-community-release-el8-8.noarch.rpm
dnf repolist all | grep mysql
dnf install -y mysql-community-server
์ด๊ธฐ root ํจ์ค์๋ ๋ณ๊ฒฝ
cat /var/log/mysqld.log | grep 'temporary password'
alter user 'root'@localhost identified by 'PASSWORD';
global validate_password.policy=LOW;
๐ช php 8.2.x
dnf install -y http://rpms.remirepo.net/enterprise/remi-release-9.rpm
dnf module list php
dnf module enable php:remi-8.2 -y
dnf -y install php php-fpm
dnf install -y php-{common,pear,cgi,curl,mbstring,gd,mysqlnd,gettext,bcmath,json,xml,fpm,intl,zip,imap,curl,gettext,json,zip,dom}