Anyone here know why installing Tomcat Native in Ubuntu 10.04 works, but not in Ubuntu 11.10? I am installing via the following commands:
apt-get -y install openjdk-6-jdk
apt-get -y install tomcat6 libapr1
apt-get -y install libtcnative-1
In Ubuntu 10.04, I see that it is loaded:
Jan 25, 2012 7:09:44 PM org.apache.catalina.startup.HostConfig deployDescriptor
INFO: Deploying configuration descriptor ROOT.xml
Jan 25, 2012 7:09:45 PM org.apache.coyote.http11.Http11AprProtocol start
INFO: Starting Coyote HTTP/1.1 on http-8080
Jan 25, 2012 7:09:45 PM org.apache.catalina.startup.Catalina start
INFO: Server startup in 353 ms
I don't see it being loaded in Ubuntu 11.10:
Jan 25, 2012 7:55:34 PM org.apache.coyote.http11.Http11Protocol init
INFO: Initializing Coyote HTTP/1.1 on http-8080
Jan 25, 2012 7:55:34 PM org.apache.catalina.startup.Catalina load
INFO: Initialization processed in 1039 ms
Jan 25, 2012 7:55:34 PM org.apache.catalina.core.StandardService start
INFO: Starting service Catalina
Jan 25, 2012 7:55:34 PM org.apache.catalina.core.StandardEngine start
INFO: Starting Servlet Engine: Apache Tomcat/6.0.32
Jan 25, 2012 7:55:34 PM org.apache.catalina.startup.HostConfig deployDescriptor
INFO: Deploying configuration descriptor ROOT.xml
Jan 25, 2012 7:55:35 PM org.apache.coyote.http11.Http11Protocol start
INFO: Starting Coyote HTTP/1.1 on http-8080
Jan 25, 2012 7:55:35 PM org.apache.catalina.startup.Catalina start
Is there anything that I need to do extra in Ubuntu 11.10? Thanks in advance for any help.