WordPressのインストール
dnf -y install wget
cd /var/www/html
wget https://ja.wordpress.org/latest-ja.tar.gz
tar xvf latest-ja.tar.gz
chown -R apache:apache .
それか
yum -y install wget
cd /var/www/html
wget https://ja.wordpress.org/latest-ja.tar.gz
tar xvf latest-ja.tar.gz
chown -R apache:apache .
備考
wordpressの初期設定
webブラウザで localhost/wordpress/ にアクセスしてwordpressの初期設定を行います。
ユーザ名
wordpress
パスワード
******
メールアドレス
*******
インストール
次はデータベースのMariaDBをインストール!