| Authors: | Nicolas Bozon, Gérald Fenoy, Jeff McKenna, Luca Delucchi |
|---|---|
| Last Updated: | $Date: 2011-12-07 14:19:47 +0100 (Wed, 07 Dec 2011) $ |
Table of Contents
Note
An Ubuntu 10.4 with ZOO virtual image is available at http://www.zoo-project.org/Ubuntu10.4_ZOO.zip (root: ZOO.test)
The following instructions were tested on Debian Squeeze, Ubuntu 10.04 and Ubuntu 10.10
sudo apt-get install flex bison libfcgi-dev libxml2 libxml2-dev curl openssl autoconf checkinstall
svn checkout http://svn.zoo-project.org/svn/trunk zoo-project
cd zoo-project/thirds/cgic206/
make
cd ../../zoo-kernel/
autoconf
./configure --with-java=/path/to/java
./configure --with-python
Note
In Ubuntu 10.04 libmozjs-dev does not exist, so to use JavaScript you can compile SpiderMonkey (remember to put /usr/local/lib in a file inside /etc/ld.so.conf.d/). For PHP, you must make sure to compile PHP with –enable-embed.
sudo echo "/usr/local/lib" > /etc/ld.so.conf.d/libmoz185.conf
sudo ldconfig
./configure --with-js=/usr/local
sudo echo "/usr/lib/xulrunner-dev" > /etc/ld.so.conf.d/libmoz185.conf
sudo ldconfig
./configure --with-js=/usr/lib/xulrunner-dev
make zoo_loader.cgi
sudo cp main.cfg /usr/lib/cgi-bin
sudo cp zoo_loader.cgi /usr/lib/cgi-bin
sudo cp ../zoo-services/hello-py/cgi-env/*.zcfg /usr/lib/cgi-bin
sudo cp ../zoo-services/hello-py/*.py /usr/lib/cgi-bin/
sudo nano /usr/lib/cgi-bin/main.cfg
- serverAddress = http://127.0.0.1
- providerSite = http://127.0.0.1
Note
If you have some problem in the execute request using Python service, add the following to main.cfg:
[env]
PYTHONPATH=<YOUR_PYTHONPATH>