まずは、Instanceの立ち上げ。
最初の作業はインスタンスの立ち上げから。ということで、インスタンスの立ち上げ方のlogを残します。
Python 2.3.5 のインストール
$ wget http://www.python.jp/pub/ftp.python.org/python/2.3.5/Python-2.3.5.tgz
$ tar zxf Python-2.3.5.tgz
$ cd Python-2.3.5
$ ./configure --prefix=/opt/Python-2.3.5
$ make
$ sudo make install
Zope 2.8.7 のインストール
$ wget http://www.zope.org/Products/Zope/2.8.7/Zope-2.8.7-final.tgz
$ tar zxf Zope-2.8.7-final.tgz
$ cd Zope-2.8.7-final
$ ./configure --with-python=/opt/Python-2.3.5/bin/python
$ make
$ sudo make install
Zope instance の作成
$ /opt/Python-2.3.5/bin/python /opt/Zope-2.8/bin/mkzopeinstance.py
> Directory: /var/zope/instances/zope
> admin: *****
> password: *****
Plone 2.5 のインストール
$ wget http://jaist.dl.sourceforge.net/sourceforge/plone/Plone-2.5.tar.gz
$ tar zxf Plone-2.5.tar.gz
$ cd Plone-2.5
$ mv * /var/zope/instances/zope/Products/.
Zope の起動
$ /var/zope/instances/zope/bin/zopectl start