Hello. I have some questions regarding Agilo product.

Environment:
SW:
- CentOS 5.3 final
- trac 0.11.5
- mysql 5.0.45
- python 2.4
- binary_agilo-1.0.1_PRO-py2.4.egg.zip
HW (xen virtual machine):
- 2 GB RAM
- Intel(R) Xeon(R) CPU X3210 @ 2.13GHz

First I had simple trac.conf and when I was trying to optimize access
times I upgraded trac.ini based on some threaad on this group:
Old config file (/etc/httpd/conf.d/trac.conf):
<Directory "/var/www/html/trac">
   SetHandler mod_python
   PythonInterpreter main_interpreter
   PythonHandler trac.web.modpython_frontend
   PythonOption TracEnvParentDir /var/www/html/trac/projects

   AuthType Basic
   AuthName "Subversion repository"
   AuthUserFile /etc/svn-auth-conf
   Require valid-user

   Order deny,allow
   Deny from all
   Allow from 10.1.0.0/16
   Allow from 192.168.0.0/24
</Directory>


New config file (/etc/httpd/conf.d/trac.conf):
### The recommended Trac web interface requires mod_python
<IfModule mod_python.c>

### Create your Trac environments as subdirectories of /var/www/trac
### They will appear in a listing on your website at /trac/, and be
available
<Location /trac>
   SetHandler mod_python
   PythonInterpreter main_interpreter
   PythonHandler trac.web.modpython_frontend
   PythonOption TracUriRoot /trac
   PythonOption TracEnvParentDir /var/www/html/trac/projects
   PythonOption PYTHON_EGG_CACHE /var/www/html/trac/projects/.egg-
cache

   # Set Site Cache on and default expiration at 1 month
   ExpiresActive On
   ExpiresByType application/x-javascript A259200
   ExpiresByType image/png A2592000
   ExpiresByType text/css A2592000

   AuthType Basic
   AuthName "Subversion repository"
   AuthUserFile /etc/svn-auth-conf
   Require valid-user

   Order deny,allow
   Deny from all
   Allow from 10.1.0.0/16
   Allow from 192.168.0.0/24
</Location>

I. performances
When I am adding new tickets/stories to agilo, response time is
unacceptable, because each ticket takes more than 10 seconds to add.
Because currently I am migrating from manual scrum to agilo I have to
migrate all tasks/stories from excel to agilo for testing purposes.
Because of response time this task is really too slow. Upgrade of
trac.conf according to description above didn't resolve performance
problems.
1.  Is this normal or can I optimize my installation for normal
response times under 0,5s?

II. multiple projects
I would like to use multiple projects in agilo. I tried to add
different project using cmd:
trac-admin /usr/share/trac/projects/$projectname initenv
but I get error that SYSTEM table already exists. Is there possible to
have different projects in agilo (trac), that don't reuse sprint ids
and ticket ids as would be the case if I used different mysql
databases. Configuration:
mysql configuration:
mysql> create user ag...@localhost identified by '$pass';
mysql> grant all privileges on agilo.* to 'agilo'@'localhost';
mysql connection string: mysql://agilo:$p...@localhost:3306/agilo
1. Whan is best pratice to use agilo in multiple projects? I guess
this is more trac issue but questions remains the same.

III. upgrade
I am currently using agilo 1.0.1 PRO from egg in 30 day evaluation.
What are my options after this period:
1. Can I use open source version?
2. What is the procedure to migrate to open source version?
3. Can I use unlicenced PRO version that has some disabled
functionality?

I agree with someone, who mentioned, that it is not clearly
understandable, which version is downloaded with egg version (PRO) and
which version is downloaded with source version (open source).

Thanks for your help,

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Agilo for Scrum" group. This group is moderated by agile42 GmbH 
http://www.agile42.com and is focused in supporting Agilo for Scrum users.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/agilo?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to