Thanks Matt for your reply.
I was aware of the fact for Sun's Java and I did it already but had that problem in the time I was contacting you. Nevertheless, I've found the problem. Sometimes solution is in front of you and you do not see it.
I'll try not to bother with too much talk but I guess this might be helpful for some other people in future.
When using FC5 as Matt said
1. Sun's Java needs to be installed
2. Tomcat I've installed via
yum install tomcat5 tomcat5-webapps tomcat5-admin-webapps
Assuming you have no firewall problems (I was installing it on remote machine and accessing it also) here it comes.
It was strange to me at the start that when deployed I did not get any log messages in my log file when accessing centric application. Tomcat Manager showed centric as it is deployed in an application list. Now, I did not tackle with Tomcat for a long time so I assumed there was a permission problem somewhere or debug level problem. It was not.
I've found the following link: (http://www.qos.ch/logging/classloader.jsp) which pointed to me that maybe some log libraries are conflicting and that actually my centric deploy did not go well (as HTPP 503 error suggested) but I just could not see it.
I did remove the commons-logging.jar, commons-logging-api.jar, log4j-1.2.9.jar from centric/WEB-INF/lib directory (maybe I needed to remove only commons jars) and after tomcat restart I've finally got log messages for centric! Man I was happy.
From that point it was easy.
Of course, exception was there when centric was deploying:
javax.xml.transform.TransformerFactoryConfigurationError: Provider org.apache.xalan.processor.TransformerFactoryImpl not found
- Here is the explanation for this exception:
http://forum.java.sun.com/thread.jspa?tstart=30&forumID=34&threadID=542044&trange=15
- What I did is make symbolic links in /tomcat_home/common/endorsed directory
ln -s /usr/share/java/xml-commons-apis-1.3.02.jar xml-commons-apis.jar
ln -s /usr/share/java/xerces-j2-2.7.1.jar xerces-j2.jar
ln -s /usr/share/java/xalan-j2-2.6.0.jar xalan.jar
After restart of Tomcat I've finally got the setup screen for centric.
The rest was like a walk in a park!
Again, thanks Matt for you prompt reply!