写真集

Camera:Panasonic LUMIX DMC-LX3
Vine Linux と Ubuntu の設定方法など

Vine Linux 5.1 Movable Type テスト環境を設定する

2010-12-12 18:58:08 | Vine Linux

Apache の設定ファイルを設定します。
設定ファイルの場所 httpd.conf
etc/apache2/conf/httpd.conf

Movable Type テスト環境用の設定をします
-------------------------------------------
Alias /mt/ "/var/www/cgi-bin/mt/"

<Directory /var/www/cgi-bin/mt/>
    Options +ExecCGI
</Directory>

ScriptAlias /mt/ "/var/www/cgi-bin/mt/"
-------------------------------------------

Movable Typeのファイルを /var/www/mt に展開します
http://www.sixapart.jp/movabletype/

perl の MySQL を操作できるようにするため、下記のパッケージをインストールします。
perl-DBI
Perl-DBD-MySQL

mt-config.cgi を設定します。
------------------------------------------------------------------
# The CGIPath is the URL to your Movable Type directory
CGIPath http://localhost/cgi-bin/mt/

# The StaticWebPath is the URL to your mt-static directory
# Note: Check the installation documentation to find out
# whether this is required for your environment. If it is not,
# simply remove it or comment out the line by prepending a "#".
StaticWebPath http://localhost/mt-static

#================ DATABASE SETTINGS ==================
# REMOVE all sections below that refer to databases
# other than the one you will be using.

##### MYSQL #####
ObjectDriver DBI::mysql
Database mt
DBUser mtuser
DBPassword password
------------------------------------------------------------------

Movable Type が起動できるかどうか確認します。
http://localhost/mt/mt-check.cgi

参考
http://www.movabletype.jp/documentation/


Vine Linux 5.1 PHP (php5) をインストールします

2010-12-12 16:17:31 | Vine Linux

PHP を MySQL と web サーバー (apache2) で使用できるようにします。

下記のパッケージをインストールします。
php5
php5-apache2
php5-mysql

phpinfo.php ファイルを下記の内容で作成してweb ブラウザでアクセスし動作を確認します。
----------------------------
<? phpinfo() ?>
----------------------------

http://localhost/phpinfo.php

表示されたのなら、phpMyAdminにもアクセスしてみます。
http://localhost/phpMyAdmin/


Vine Linux 5.1 に Apache の設定をします

2010-12-12 00:14:30 | Vine Linux

設定ファイルの場所 httpd.conf
/etc/apache2/conf/httpd.conf

Movable Type テスト環境用の設定をします
-------------------------------------------
Alias /mt/ "/var/www/cgi-bin/mt/"

<Directory /var/www/cgi-bin/mt/>
    Options +ExecCGI
</Directory>

ScriptAlias /mt/ "/var/www/cgi-bin/mt/"
-------------------------------------------

Movable Typeのファイルを /var/www/mt に展開します。
http://www.sixapart.jp/movabletype/

参考
http://www.vinelinux.org/manuals/main-service.html