Jan wrote:
>hi all,
>
>sorry for this (i think easy to answer) question, but i am a newbie to
>jboss. i want to bind the internal webserver to a different port, not
>8080 as tomcat is already lurking there. which configfile do i have
>to change and what is the parameter called. i can't find it. please
>give me a hint.

Try configuring Tomcat on a different port, like 9090.

Here's the HTML version from my upcoming tutorial...

       Edit file 
<CODE>\Jakarta\dist\tomcat\conf\server.xml</CODE>. Change the port from 
8080 to <B>9090</B> (so we don't interfere with jBoss' Web server on port 
8080).
<TABLE BORDER=0 BGCOLOR="#C0C0FF" CELLSPACING=4><TR><TD><PRE>
   &lt;Connector
       className="org.apache.tomcat.service.SimpleTcpConnector"&gt;
     &lt;Parameter name="handler"
       value="org.apache.tomcat.service.http.HttpConnectionHandler"/&gt;
     &lt;Parameter name="port" value="<B>9090</B>"/&gt;
   &lt;/Connector&gt;
</PRE></TD></TR></TABLE>

-- Ken Jenks, jBoss Documentation Project Lead

    http://abiblion.com/   Tools for reading.


--
--------------------------------------------------------------
To subscribe:        [EMAIL PROTECTED]
To unsubscribe:      [EMAIL PROTECTED]
Problems?:           [EMAIL PROTECTED]

Reply via email to