RE: java.net.BindException: Address already in use: JVM_Bind:8090

2007-04-05 Thread Alvarez, Mike
Have you verified that something other than tomcat is not using that
port?

Shut down tomcat and then telnet to that port (e.g. telnet [hostname]
[port#] Example: telnet localhost 8080) 

-Original Message-
From: mallika guliani [mailto:[EMAIL PROTECTED] 
Sent: Thursday, April 05, 2007 11:18 AM
To: tomcat-user@jakarta.apache.org
Subject: java.net.BindException: Address already in use: JVM_Bind:8090

I configured Tomcat/5.0.28 in MyEclipse 5.1 but unable to run the server
to test some examples. I changed default 8080 port in server.xml, which
was also giving same error. 
  These are the lines that I changed:
   
  Server port=8015 shutdown=SHUTDOWN debug=0
  Connector port=8090   maxThreads=150 ...
   
  But it keeps giving the same error:
   
  org.apache.coyote.http11.Http11Protocol init
  SEVERE: Error initializing endpoint
  java.net.BindException: Address already in use: JVM_Bind:8090
   
  SEVERE: Error starting endpoint
  java.net.BindException: Address already in use: JVM_Bind:8090
   
  StandardServer.await: create[8015]: java.net.BindException: Address
already in use: JVM_Bind
   
  All the forums say change port in Server.xml which hasn't resolved the
problem.
   
  Please advice.
   
  Thank You.

 
-
Need Mail bonding?
Go to the Yahoo! Mail QA for great tips from Yahoo! Answers users.

-
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: tomcat ssl not working

2006-06-02 Thread Alvarez, Mike
The servers.xml file needs to be configured with the keystore path and
file name.

Connector className=org.apache.coyote.tomcat4.CoyoteConnector
   port=8443 minProcessors=5 maxProcessors=75
   enableLookups=true
   acceptCount=100 debug=0 scheme=https secure=true
   useURIValidationHack=false disableUploadTimeout=true
  Factory
className=org.apache.coyote.tomcat4.CoyoteServerSocketFactory
   keystoreFile=D:\\Documents and Settings\\kz616d\\My
Documents\\temp\\Jill\\w2jzdr9y01.amer.corp.eds.com.keystore
   keystorePass=dorkdork
   clientAuth=false protocol=TLS /
/Connector 


-Original Message-
From: AJ Jonen [mailto:[EMAIL PROTECTED] 
Sent: Thursday, June 01, 2006 3:12 PM
To: Tomcat Users List
Subject: tomcat ssl not working

My tomcat server is not responding when I type in
https://localhost:8443.
oddly enough it does work when I type in http://localhost:8443

I'm having a bit of an issue getting Tomcat to work on the secure port 
8443.   What happens is I type https://localhost:8443 and the page never

loads.  I get no errors (page cannot be found, page cannot be displayed
etc).  My browser simply looks like it's loading the page, it eventually
says that it's done, but my browser home page is still displayed.

- The unsecure port (port 8090 in my case, because port 8080 was already
in use) works fine.
- I generated my keystore file, presumably correctly (I was prompted to
enter my name, organization, location, etc), and it is in the correct
location (C:\Program Files\Apache Software Foundation\Tomcat 5.5\conf).
- Kathy O. looked at my server.xml page and says that everything looks
correct.  Everything looks right to me too.
- I am using Tomcat 5.5 and I am using the correct java version (1.5,
not 1.4).

Any ideas on what might be preventing the page from loading correctly on
the secure port?

Rebecca


-
To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe,
e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]