Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

running 8080 and 80, and 8443 and 443 all at the same time

Status
Not open for further replies.

spyghost

Technical User
Jan 17, 2003
52
HK
hi,

i can't run 8080, 80, 8443, and 443 all at the same time. i just need to run all at the same time. all runs well with the default 8080 and 8443, but NOT "together with" 80 and 443.

what is the proper setting for the <connector port=? redirectport=? /> ?

i just need to see the exact same page as and as well as
and
thanks...
 
I guess you would need several connectors, like this:

Code:
<Connector port="8080" maxThreads="150" inSpareThreads="25" maxSpareThreads="75" enableLookups="false" redirectPort="8443" acceptCount="100" connectionTimeout="20000" disableUploadTimeout="true" />

<Connector port="80" maxThreads="150" inSpareThreads="25" maxSpareThreads="75" enableLookups="false" redirectPort="443" acceptCount="100" connectionTimeout="20000" disableUploadTimeout="true" />

Just try it, I am not sure.

BUT: You will not be able to run tomcat on ports smaller 1024 as long as you don't start it with root-privileges!

Cheers

frag

real_firestorm@gmx.de
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top