How To Deploy Aditam Server and Agent for development

Pre requires

Python >= 2.5 setuptools (easy_install) : http://peak.telecommunity.com/DevCenter/EasyInstall

Add python and easy_install in your path.

Create your virtual

Open a shell :

easy_install virtualenv
python virtualenv.py ENV

ENV : where you want to put your virtualenv for example : /home/toto/python or C:\pythonaditam

Create an alias to use the bin of your virtual env and not the python's system.

Install the modules

svn co https://www.aditam.org/svn/aditam/main/aditam.core/trunk core
cd core
python setup.py develop
cd ..

svn co https://www.aditam.org/svn/aditam/main/aditam.agent/trunk agent
cd agent
python setup.py develop
cd ..

svn co https://www.aditam.org/svn/aditam/main/aditam.server/trunk server
cd server
python setup.py develop
cd ..

Configure Aditam

Configure the database (chose beetween: sqlite, mysql, postgres, oracle, mssql, or firebird)
~$ aditam-admin.py -C

Initialise the database
~$ aditam-admin.py -c

Launch Aditam

Start the server
~$ aditam-server.py

Start the agent on each node
~$ aditam-agent.py -H YOUR_IP

For more options you can try:
~$ aditam-*.py --help