インストールは、説明書通りで問題なく出来る。(Debian にインストール)
簡単に書くと、
- DBの設定(MySQLへDB、ユーザー作成)
# mysql -u root -p
Enter password: パスワード入力
mysql> create database DATABASE_NAME;
mysql> grant all privileges on DATABASE_NAME.* to USER_NAME@localhost identified by ‘PASSWORD’; - 設定ファイルの書換え
mt.cfgCGIPath http://www.monyplaza.net/movabletype/
ObjectDriver DBI::mysql
Database DATABASE_NAME
DBUser USER_NAMEmt-db-pass.cgi
データベースのパスワードのみ入力
- CGIスクリプトの権限設定
# chmod 755 mt*.cgi
- Apache httpd.confファイルの書換え
Alias /movabletype/ /MovableType Install Path/
<Directory “/MovableType Install Path”>
AddHandler cgi-script .cgi
Options ExecCGI
AllowOverride None
Order allow,deny
Allow from all
</Directory> - Apacheの再起動
# /etc/init.d/apache restart
- Perlモジュールのチェック
http://www.monyplaza.net/movabletype/mt-check.cgi
- 足りなかったモジュールのインストール
apt-get install imagemagick perlmagick
- Perlモジュールの再チェック
- システムの初期化
http://www.monyplaza.net/movabletype/mt-load.cgi