0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

テスト環境を作ろう! wordpressインストール編

Last updated at Posted at 2025-01-24

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をインストール!

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?