hello,
can u plz tell me how can i change the default port 8080 of jboss 3.2.6 to something else?
thanks a lot.
-
jboss 3.2.6 - how to change port 8080? (3 messages)
- Posted by: Sujan Shrestha
- Posted on: January 23 2005 08:43 EST
Threaded Messages (3)
- jboss 3.2.6 - how to change port 8080? by Sujan Shrestha on January 23 2005 09:12 EST
- oracle and jboss by Sujan Shrestha on January 23 2005 09:32 EST
- jboss 3.2.6 - how to change port 8080? by shwetank singh on September 26 2008 06:15 EDT
- oracle and jboss by Sujan Shrestha on January 23 2005 09:32 EST
-
jboss 3.2.6 - how to change port 8080?[ Go to top ]
- Posted by: Sujan Shrestha
- Posted on: January 23 2005 09:12 EST
- in response to Sujan Shrestha
finally,
i managed to make it work by changing all 8080 port in below to files to for example 28080. i hope it's ok.
1) server.xml in
D:\jboss-3.2.6\server\all\deploy\jbossweb-tomcat50.sar
2) jboss-service.xml in
D:\jboss-3.2.6\server\all\deploy\http-invoker.sar\META-INF -
oracle and jboss[ Go to top ]
- Posted by: Sujan Shrestha
- Posted on: January 23 2005 09:32 EST
- in response to Sujan Shrestha
Hello
Both JBoss and Oracle RDBMS are using the port 8080. HTTP Server for JBoss, XDB listener for Oracle RDBMS.
So I thin you are hitting this issue, which error do you have when you start JBoss after Oracle? Something like:
"java.net.BindException: Address already in use: JVM_Bind:8080"
So you can either change the JBoss HTTP Port, it varies depending of the version of JBoss:
4.0: JBOSS_HOME/<config>/deploy/jbossweb-tomcat50.sar/server.xml
3.x: JBOSS_HOME/server/<config>/deploy/tomcat41-service.xml
or change the XDB Port:
connect to your DB using system user (SQL*PLUS) and execute the following command:
call dbms_xdb.cfg_update(updateXML(
dbms_xdb.cfg_get()
, '/xdbconfig/sysconfig/protocolconfig/httpconfig/http-port/text()'
, 8081))
to change it from 8080 to 8081
Regards
Tugdual Grall
reference from:
http://forums.oracle.com/forums/thread.jsp?forum=98&thread=275836&message=&tstart=0&trange=15846118 -
jboss 3.2.6 - how to change port 8080?[ Go to top ]
- Posted by: shwetank singh
- Posted on: September 26 2008 18:15 EDT
- in response to Sujan Shrestha
Thanks a lot for the post. it really helped!