[Bug 287644] Re: tomcat hangs on startup if ssl is enabled

2014-11-15 Thread Andreas Ntaflos
A possible workaround for this problem is to install an entropy
gathering daemon like haveged (apt-get install haveged) to keep
/dev/random supplied with entropy. Requires no additional configuration
and speeds things up tremendously.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/287644

Title:
  tomcat hangs on startup if ssl is enabled

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/tomcat-native/+bug/287644/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 287644] Re: tomcat hangs on startup if ssl is enabled

2013-12-24 Thread LocutusOfBorg
doesn this still happen with tomcat native 1.1.29? and tomcat .49

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/287644

Title:
  tomcat hangs on startup if ssl is enabled

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/tomcat-native/+bug/287644/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 287644] Re: tomcat hangs on startup if ssl is enabled

2011-02-04 Thread Bug Watch Updater
** Changed in: tomcat-native (Gentoo Linux)
   Importance: Unknown = Medium

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/287644

Title:
  tomcat hangs on startup if ssl is enabled

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 287644] Re: tomcat hangs on startup if ssl is enabled

2010-09-28 Thread nuscly
To disable random that lock tomcat, I disable it in APR.

If you compile by yourself APR, you can fix it like it :

cd apache-tomcat-6.0.29/tomcat-native-1.1.20-src/jni/native/
In include/tcn.h
I Add the line 33 #undef APR_HAS_RANDOM

Then when you start : APR capabilities ... random [false]

-- 
tomcat hangs on startup if ssl is enabled
https://bugs.launchpad.net/bugs/287644
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 287644] Re: tomcat hangs on startup if ssl is enabled

2009-10-21 Thread John Anderson
Still seeing this issue in karmic with version 1.1.16

-- 
tomcat hangs on startup if ssl is enabled
https://bugs.launchpad.net/bugs/287644
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 287644] Re: tomcat hangs on startup if ssl is enabled

2009-03-28 Thread dmitry.truni...@gmail.com
I've similar issue on Ubuntu, but im my case, as you can see from log,
jboss hangs only for about 1 minute. Then it still loading.

22:02:40,026 INFO  [AprLifecycleListener] Loaded Apache Tomcat Native library 
1.1.16.
22:02:40,026 INFO  [AprLifecycleListener] APR capabilities: IPv6 [true], 
sendfile [true], accept filters [false], random [true].
22:04:09,467 INFO  [Http11AprProtocol] Initializing Coyote HTTP/1.1 on 
http-127.0.0.1-8080

-- 
tomcat hangs on startup if ssl is enabled
https://bugs.launchpad.net/bugs/287644
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 287644] Re: tomcat hangs on startup if ssl is enabled

2008-11-25 Thread John Neffenger
I got rid of the hang (or very long delay) by changing this line in
conf/server.xml:

Listener className=org.apache.catalina.core.AprLifecycleListener
SSLEngine=on /

to this:

Listener className=org.apache.catalina.core.AprLifecycleListener
SSLEngine=off /

but then I ran right into this error in the log file:

25-Nov-2008 9:15:58 AM org.apache.catalina.core.AprLifecycleListener init
INFO: Loaded APR based Apache Tomcat Native library 1.1.12.
25-Nov-2008 9:15:58 AM org.apache.catalina.core.AprLifecycleListener init
INFO: APR capabilities: IPv6 [true], sendfile [true], accept filters 
[false], random [true].
25-Nov-2008 9:15:59 AM org.apache.coyote.http11.Http11AprProtocol init
SEVERE: Error initializing endpoint
java.lang.Exception: Socket bind failed: [22] Invalid argument
...

which apparently involves the IPv6 networking support and has been fixed
by Apache:

Socket bind fails on tomcat startup when using apr
https://issues.apache.org/bugzilla/show_bug.cgi?id=43327

There's a work-around for that, which I haven't tried, of removing IPv6
support in /etc/modprobe.d/aliases, but I think I'll just uninstall
libtcnative-1 and wait. I was hoping APR would speed up Tomcat's
startup time (perhaps with native random number generation?), but it
seems to be about the same.

-- 
tomcat hangs on startup if ssl is enabled
https://bugs.launchpad.net/bugs/287644
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 287644] Re: tomcat hangs on startup if ssl is enabled

2008-11-25 Thread Craig
The IPv6 issue has been reported in bug 287645.

Upgrading tomcat-native to 1.1.15 should fix both the ipv6 and ssl
issues. A bump request is in bug 290078

-- 
tomcat hangs on startup if ssl is enabled
https://bugs.launchpad.net/bugs/287644
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 287644] Re: tomcat hangs on startup if ssl is enabled

2008-11-05 Thread Andy Brook
same for me.  Identical results when building with 1.1.19 source.  not
sure how the linked description helps Ubuntu.  I happen to have ipv6
blacklisted, doesn't seem to help.

-- 
tomcat hangs on startup if ssl is enabled
https://bugs.launchpad.net/bugs/287644
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 287644] Re: tomcat hangs on startup if ssl is enabled

2008-10-22 Thread Bug Watch Updater
** Changed in: tomcat-native (Gentoo Linux)
   Status: Unknown = Invalid

-- 
tomcat hangs on startup if ssl is enabled
https://bugs.launchpad.net/bugs/287644
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs