トップ 差分 一覧 ping ソース 検索 ヘルプ PDF RSS ログイン

WordPress



目次



記事一覧

キーワード

WordPress

 CentOS7へインストール

準備

 インストール


ダウンロード

wget https://wordpress.org/latest.tar.gz

解凍

tar -xzvf latest.tar.gz

移動とオーナー変更

mv wordpress /var/www/html/blog
chown -R apache:apache /var/www/html/blog

初期設定

http://localhost/blog にアクセス

データベースとユーザーの作成



Tips

IPアドレス変更時

  • wp_optionsテーブルのsiteurl、homeを更新

 構築ログ

MySQL

# wget https://dev.mysql.com/get/mysql80-community-release-el7-3.noarch.rpm 
# yum localinstall mysql80-community-release-el7-3.noarch.rpm  
# yum update 
# yum install mysql-community-server
# systemctl enable mysqld
# systemctl start mysqld

一時パスワードの確認
# cat /var/log/mysqld.log | grep "password"
初期設定
# mysql_secure_instllation

PHP

# yum -y install epel-release
# yum -y install http://rpms.remirepo.net/enterprise/remi-release-7.rpm
# yum update

Error: Cannot retrieve metalink for repository: epel. Please verify its path and try again
  • vi /etc/yum.repos.d/epel.repo
  • baseurlをコメントインし、mirrorlistをコメントアウト。

# yum install -y --enablerepo=remi-php74 php php-gd php-intl php-json php-mysqlnd php-mbstring
# yum install -y --enablerepo=remi-php74 phpMyAdmin

WordPress

# wget https://wordpress.org/latest.tar.gz
# tar -xvf latest.tar.gz
# mv wordpress /var/www/html/blog
# chown -R apache:apache /var/www/html/blog



YAGI Hiroto (piroto@a-net.email.ne.jp)
twitter http://twitter.com/pppiroto

Copyright© 矢木 浩人 All Rights Reserved.