I wrote a small script to manually start geronimo that (I think) doesn't compromise security too much:
#!/bin/bash mv /dev/random /dev/random.bak ln -s /dev/urandom /dev/random /etc/init.d/geronimo start echo "Waiting for tomcat to start" sleep 10 rm /dev/random mv /dev/random.bak /dev/random You can change sleep 10 to whatever number of seconds suits your configuration (for me it's enough to get past org.apache.geronimo.configs/tomcat6/2.1.3/car) And thanks again to kevan for the help. -- View this message in context: http://www.nabble.com/Startup-time-delay-in-Ubuntu-server-tp21301711s134p21434147.html Sent from the Apache Geronimo - Users mailing list archive at Nabble.com.
