$Date:: 2012-12-14 #$

Wordpress日本語版のインストール


1. ダウンロード

ダウンロードサイト: Wordpress|日本語

2. 展開

cd /common/htdocs/data
tar zxvf …/wordpress-3.4.1-ja.tar.gz
chown -R www:www wordpress

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

# mysql -u root -p
# create database wordpress;
# show databases;
# grant all privileges on wordpress.* to wordpress@localhost identified by "パスワード";
# flush privileges;
# show grants for wordpress@localhost;
# exit

4. wordpressの初期設定(wp-config.phpの設定など)

ブラウザで「http://HTTPサーバー/wordpress/wp-admin/install.html」にアクセス
データベース名wordpress
ユーザー名wordpress
パスワードパスワード
データベースのホスト名localhost
テーブル接頭辞wp1_

Valid HTML 4.01 Transitional