RTC 4.0.3 is installed by the express setup, but no setup page is not displayed
JTS and CCM are installed on Windows 2008 R2 server, 64-bit, 6 GB RAM. Disabled security certificate setting and went to http://hostname.example.com:9080/jts/setup. Got an error "IE cannot display the webpage". Confirmed that Tomcat 7.0.32 is successfully installed with http://hostname.example.com:9080
This server hosts ClearCase and ClearQuest Client as well. ClearCase/ClearQuest 8.0.x was installed on d: drive before RTC installation and RTC was installed on e: drive.
4 answers
Hi Joseph,
I would do the two following checks
1. Before starting tomcat, do a netstat -an to see if another process is using that host:port combination
2. Do a sanity check and confirm that in the Tomcat configuration http requests are not being redirected to https
3. Scan the catalina logs for errors
I would do the two following checks
1. Before starting tomcat, do a netstat -an to see if another process is using that host:port combination
2. Do a sanity check and confirm that in the Tomcat configuration http requests are not being redirected to https
3. Scan the catalina logs for errors
Hi Joseph
TO confirm if http or https protocol is being used for the public uri, review the jts teamserver.properties file.
BTW: I beleive during the express set up there is the option to specify the public uri. By default it should be filled in using the information from the url used to access the jts/setup wizard.
TO confirm if http or https protocol is being used for the public uri, review the jts teamserver.properties file.
BTW: I beleive during the express set up there is the option to specify the public uri. By default it should be filled in using the information from the url used to access the jts/setup wizard.
6 gigs of ram is not enough memory to run RTC as configured by default.
You should open the server.startup script and remove the -Xgc:preferredHeapBase=0x100000000 setting near the bottom.
set JAVA_OPTS=%JAVA_OPTS% -Xmx4G
set JAVA_OPTS=%JAVA_OPTS% -Xms4G
set JAVA_OPTS=%JAVA_OPTS% -Xmn512M
set JAVA_OPTS=%JAVA_OPTS% -Xgcpolicy:gencon
set JAVA_OPTS=%JAVA_OPTS% -Xcompressedrefs -Xgc:preferredHeapBase=0x100000000
Depending on what else is running on that system you may want to cut down on the XMX and XMS settings as well.
That would only be recommended in a non production environment. If it is in production you should get more memory for your system.
You should open the server.startup script and remove the -Xgc:preferredHeapBase=0x100000000 setting near the bottom.
set JAVA_OPTS=%JAVA_OPTS% -Xmx4G
set JAVA_OPTS=%JAVA_OPTS% -Xms4G
set JAVA_OPTS=%JAVA_OPTS% -Xmn512M
set JAVA_OPTS=%JAVA_OPTS% -Xgcpolicy:gencon
set JAVA_OPTS=%JAVA_OPTS% -Xcompressedrefs -Xgc:preferredHeapBase=0x100000000
Depending on what else is running on that system you may want to cut down on the XMX and XMS settings as well.
That would only be recommended in a non production environment. If it is in production you should get more memory for your system.
Comments
Clement Liu
Jul 24 '13, 6:22 p.m.Hi Joe,
1 vote