Table of Contents
WordPress.org
インストールの前提条件は、MySQL、PHPがインストール済み
ダウンロード~展開
# cd /opt
# wget https://ja.wordpress.org/latest-ja.tar.gz
# tar -zxvf latest-ja.tar.gz
# chown apache -R wordpress/
apacheの設定ファイル変更
# vi /etc/httpd/conf.d/ssl.conf
---------------------------------------------------------------------------
<VirtualHost _default_:443>
DocumentRoot "/opt/wordpress"
ServerName www.chinaz.org:443
<Directory "/opt/wordpress">
Options FollowSymLinks
AllowOverride All
Require all granted
</Directory>
---------------------------------------------------------------------------
設定ファイルのチェック
# apachectl configtest
Syntax OK
サービスの再起動
systemctl restart httpd
データベースとユーザ作成
# mysql -u root -p
mysql> create database wordpress;
mysql> create user 'wadmin'@'localhost' identified by '(パスワード)';
mysql> grant all on wordpress.* to 'wadmin'@'localhost';
mysql> FLUSH PRIVILEGES;
セットアップ
URL[ https://www.chinaz.org/ ]を入力して、データベース名や、ユーザ名の登録とテーマの追加
使用プラグイン
Akismet Spam Protection (Akismet スパム保護) – WordPress プラグイン | WordPress.org 日本語
WP Githuber MD – WordPress Markdown Editor – WordPress プラグイン | WordPress.org 日本語
WPS Hide Login – WordPress プラグイン | WordPress.org 日本語
BackWPup – WordPress Backup Plugin – WordPress プラグイン | WordPress.org 日本語
WP Last Modified Info – WordPress プラグイン | WordPress.org 日本語
Font Awesome 4 Menus – WordPress プラグイン | WordPress.org 日本語