CLM Server Won't Start on Linux Workstation
I have installed CLM 3011 on a Linux workstation. The installation proceeded correctly and I subsequently installed the client for the same version thru installation manager.
When attempting to start the CLM Server, using any of the following methods (a) double click the server.startup file and "run" and also by clicking on the server start up short cut that was placed in my applications directory after installation.
The server does not start up ... I have waited and there are no files being created indicating that the server is starting.
Can somebody assist ?
When attempting to start the CLM Server, using any of the following methods (a) double click the server.startup file and "run" and also by clicking on the server start up short cut that was placed in my applications directory after installation.
The server does not start up ... I have waited and there are no files being created indicating that the server is starting.
Can somebody assist ?
3 answers
It does take a while especial the first time it runs because it has to deploy all the war files.
I usually tail the catalina.log file to keep an eye on the status.
tail -f /opt/IBM/JazzTeamServer/server/tomcat/logs/catalina.log
You will see the line: "INFO: Server startup in 12345 ms" once it is started.
As far as running it as a service I don't know of any specific RTC documentation for Linux but from my experience creating a service isn't very difficult.
I used this example to set it up on my system and it seems to be working without any issues.
http://www.spaceprogram.com/knowledge/tomcat_init_d.html
(I had to modify it to point to the server.startup and server.shutdown files and I remove the JAVA_HOME variable since that gets set through one of the other scripts during the startup process)
Keep in mind I am on a test system so I don't really monitor for any issues that may be caused by using this method.
I usually tail the catalina.log file to keep an eye on the status.
tail -f /opt/IBM/JazzTeamServer/server/tomcat/logs/catalina.log
You will see the line: "INFO: Server startup in 12345 ms" once it is started.
As far as running it as a service I don't know of any specific RTC documentation for Linux but from my experience creating a service isn't very difficult.
I used this example to set it up on my system and it seems to be working without any issues.
http://www.spaceprogram.com/knowledge/tomcat_init_d.html
(I had to modify it to point to the server.startup and server.shutdown files and I remove the JAVA_HOME variable since that gets set through one of the other scripts during the startup process)
Keep in mind I am on a test system so I don't really monitor for any issues that may be caused by using this method.
Karen,
I found one possible issue with starting as a service.
The RTC info center on Special instructions for UNIX systems mentions this:
init.d invokes the startup scripts with the maximum number of file descriptors set to 1024 instead of the system default value that is set in /etc/security/limits.conf (65536).
It is talking about WebSphere but it looks like it may affect all processes start from init.d
I found one possible issue with starting as a service.
The RTC info center on Special instructions for UNIX systems mentions this:
init.d invokes the startup scripts with the maximum number of file descriptors set to 1024 instead of the system default value that is set in /etc/security/limits.conf (65536).
It is talking about WebSphere but it looks like it may affect all processes start from init.d
Comments
Karl Weinert
JAZZ DEVELOPER Jul 23 '12, 3:52 p.m.try running it from a shell and see if returns anything there. /opt/IBM/JazzTeamServer/server/server.startup The other issues I have seen have been related to memory so How much memory do you have on this system?