久々の開発、eclipse phpの開発は環境構築すぐ忘れるのでメモる。
■ローカルのlinux上にwordpressをインストール
(1)wordpress解凍
# cd /app
# unzip wordpress-2.9.2-ja.zip
wordpressってディレクトリが出来るので、所有者とパーミッションを変更しておく
開発用なので全て編集可能にしておく。
# chmod -R 777 wordpress
※ワードプレスのインストールディレクトリはsambaで共有しwindowsの
ネットワークドライブにしておく
(2)DB作成
mysqlでDBを作成する。
mysql>create database wp_dev_db default charset utf8;
mysql> show databases; で確認
+——————–+
| Database |
+——————–+
| information_schema |
| mysql |
| test |
| wp_dev_db |
+——————–+
(3)Apacheの設定をしておく
・ひとまず何でもありの設定
Alias /wp-dev/ “/app/wordpress/”
Options FollowSymLinks Includes ExecCGI
AllowOverride All
Order allow,deny
Allow from all
・apache再起動
# /etc/rc.d/init.d/httpd restart
httpd を停止中: [ OK ]
httpd を起動中: [ OK ]
(4)wordpressの設定ファイルを書き換えておく
wp-config-sample.phpをwp-config.phpにリネームして
「DB名」「ユーザ名」「ユーザパスワード」を書き換える
(5)URLをたたきリクエストを行う。
http://192.168.xxx.xxx/wp-dev/
ブログタイトルとメールアドレスを聞いてくるので
順番に入れていく。
パスワードを忘れずに。