728x90
php8.0
-
Rocky9: Wordpress + PHP8.0 + MySQL8.0공부합시다!/LInux 2023. 8. 25. 17:39
Rocky9에 wordpress와 MySQL을 설치해서 Connection 하는 과정입니다. 2Tier 구성. 1. Rocky9-1 # dnf install -y wget tar httpd # wget https://ko.wordpress.org/wordpress-5.7.8-ko_KR.tar.gz # tar xvfz wordpress-5.7.8-ko_KR.tar.gz # cp -ar wordpress/* /var/www/html/ # cp /var/www/html/{wp-config-sample.php,wp-config.php} # sed -i 's/DirectoryIndex index.html/DirectoryIndex index.php/g' /etc/httpd/conf/httpd.conf # dnf ..