Page 1 of 1

Page Not Loading on Win2003 64-bit

PostPosted:Tue Aug 31, 2010 5:40 pm
by paulwesson
We have a Windows 2003 Server running 64-bit.

I have installed the JDK (jdk-6u21-windows-x64.exe) and it went fine.
I installed the OpenKM to C:\OpenKM-4.1_JBoss-4.2.3.GA
I edited the run.bat and added the -b 0.0.0.0 to allow access from other computers.

When I launch run.bat, I don't see any errors and it appears to load everything fine.

When I try and access the site either locally or from another computer, I just get a blank page.

The "Windows Firewall" is turned off.
When I ran netstat -an | find /i "listening" after I started OpenKM, it did show listening on port 8083.

local: http://localhost:8083/OpenKM/
other: http://192.168.1.10:8083/OpenKM/

I've attached both the server and boot logs from ..\server\default\log directory.

Can anyone provide any insight as to why nothing loads? Is this a server configuration issue? Should I install the 32bit jdk?

(I should also note, that if I stop OpenKM, I get an "unable to connect" page, so that tells me the jBoss server is responding to the request)

Thanks in advance.
Paul

Re: Page Not Loading on Win2003 64-bit

PostPosted:Wed Sep 01, 2010 7:14 am
by jllort
the port is 8080 not 8083, have you change default port in server.xml, if not then here you've got the error, jboss binding on several ports but http service by default is on 8080 ?

Re: Page Not Loading on Win2003 64-bit

PostPosted:Wed Sep 01, 2010 1:38 pm
by paulwesson
http://localhost:8080/OpenKM/

returns 404 webpage not found.

Re: Page Not Loading on Win2003 64-bit

PostPosted:Wed Sep 01, 2010 2:39 pm
by jllort
You've got a problem in this server
Code: Select all
2010-08-31 13:33:49,313 ERROR [org.apache.coyote.http11.Http11Protocol] Error initializing endpoint

java.net.BindException: Address already in use: JVM_Bind:8080

	at org.apache.tomcat.util.net.JIoEndpoint.init(JIoEndpoint.java:500)
Seems other application is yet binding in port 8080 ( tomcat, jdownloader or similar application could be the reason ... close it or change jboss default por at server.xml file ).

Re: Page Not Loading on Win2003 64-bit

PostPosted:Fri Sep 03, 2010 4:26 pm
by paulwesson
SOLVED!

Our network admin found an IBM service running that had a hold on port 8080.

Works wonderfully.

Thanks all.