Ok, I hope that too. If you require assistance, please post all commands executed and all messages received

---------- Post added at 02:26 PM ---------- Previous post was at 01:53 PM ----------
Ok, a few problems I ran into when trying to install tomcat5 after installing (and subsequently removing) tomcat6 on F14 (and maybe the other way round, too): Starting up the service fails because during installation/removal the tomcat account is not updated according to the version of tomcat currently being installed, so it ends up pointing to the wrong home directory and leaves it disabled.
To fix this, one has to amend tomcat's home directory in /etc/passwd: Change
Code:
tomcat:x:91:91:Apache Tomcat:/usr/share/tomcat6:/sbin/nologin
to
Code:
tomcat:x:91:91:Apache Tomcat:/usr/share/tomcat5:/bin/bash
with your favorite text editor. I also had to change ownership to all tomcat directories
Code:
su -c "chown root:tomcat /var/log/tomcat5 /var/lib/tomcat5 /var/cache/tomcat5 /etc/tomcat5"
and change permissions to /var/log/tomcat5
Code:
su -c "chmod 775 /var/log/tomcat5"
I don't know if this is also a consequence of the double installation, much the same as I don't know if it's going to be a problem in F12 too (I don't have a F12 installation handy, atm). Just check this out in case you can't manage to start the service after installing tomcat5 in F12.