Generate pkcs12 certificates from offical COMODO certs

2014-02-14 Thread BONNET, Frank
Hello I have officials certificates for apache2 from COMODO that I would like to import into tomcat ( pkcs12 ) if someone has links / infos to do this task it would be a great help ( google doesn't help much ) thanks you

Re: Generate pkcs12 certificates from offical COMODO certs

2014-02-14 Thread Ognjen Blagojevic
Frank, On 14.2.2014 14:10, BONNET, Frank wrote: I have officials certificates for apache2 from COMODO that I would like to import into tomcat ( pkcs12 ) if someone has links / infos to do this task it would be a great help ( google doesn't help much ) You didn't mention if you have any

Re: Generate pkcs12 certificates from offical COMODO certs

2014-02-14 Thread BONNET, Frank
I need to convert/import from PEM format to P12 thanks 2014-02-14 14:14 GMT+01:00 Sanaullah sanaulla...@gmail.com: Hi Frank, I am not expert with apache. can you please let me know which format of certificate you do have? pem, der, p12. and also in which format you would like to

Re: Generate pkcs12 certificates from offical COMODO certs

2014-02-14 Thread BONNET, Frank
Hello Ognjen the intermediate cert in the one named chain right ? *Frank BONNET* Systemes UNIX et Reseaux ESIEE PARIS 01.45.92.66.17 - 06.70.37.37.69 2014-02-14 14:57 GMT+01:00 Ognjen Blagojevic ognjen.d.blagoje...@gmail.com : Frank, On 14.2.2014 14:10, BONNET, Frank wrote: I have

Re: Eclipse: Server Tomcat v7.0 Server at localhost failed to start.

2014-02-14 Thread JB MORLA
Maybe you added a .jar file to the build path and there is a conflict with the jars already present in Eclipse and Tomcat. My solution was to remove the jars. On Thu, Feb 13, 2014 at 10:27 PM, Dave Kennedy davek1...@gmail.com wrote: Env: Windows 7 Java: jdk1.7.0_51 STS 3.4.0.RELEASE (Based

Re: Generate pkcs12 certificates from offical COMODO certs

2014-02-14 Thread Ognjen Blagojevic
Frank, On 14.2.2014 15:00, BONNET, Frank wrote: the intermediate cert in the one named chain right ? Yes, it is usually named that way. -Ognjen - To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org For additional

Unable to shutdown Tomcat

2014-02-14 Thread Pooja Swamy
I am unable to shutdown my tomcat gracefully. Everytime I try to shutdown tomcat, this is the error I get. test@17.198.48.77:/Users/test/software/tomcat/bin./startup.sh Using CATALINA_BASE: /Users/test/software/tomcat Using CATALINA_HOME: /Users/test/software/tomcat Using CATALINA_TMPDIR:

RE: Unable to shutdown Tomcat

2014-02-14 Thread Caldarale, Charles R
From: Pooja Swamy [mailto:poojasw...@gmail.com] Subject: Unable to shutdown Tomcat Everytime I try to shutdown tomcat, this is the error I get. Feb 14, 2014 6:37:52 PM org.apache.catalina.startup.Catalina stopServer SEVERE: Catalina.stop: java.net.ConnectException: Connection refused

Re: Issue running Websockets JSR356 with Tomcat 7.0.50 Embedded

2014-02-14 Thread Jacopo Cappellato
Here is the client code that I use to recreate the problem: public static void main(String[] args) throws Exception { String currentDir = new File(.).getCanonicalPath(); String tomcatDir = currentDir + File.separatorChar + tomcat; String webRoot = currentDir +

Re: Unable to shutdown Tomcat

2014-02-14 Thread Leo Medina
Hello have you tried: ps -ef | grep port number kill -9 port number On Fri, Feb 14, 2014 at 10:44 AM, Pooja Swamy poojasw...@gmail.com wrote: I am unable to shutdown my tomcat gracefully. Everytime I try to shutdown tomcat, this is the error I get.

RE: Unable to shutdown Tomcat

2014-02-14 Thread Caldarale, Charles R
From: Leo Medina [mailto:leo.medi...@gmail.com] Subject: RE: Unable to shutdown Tomcat Hello have you tried: ps -ef | grep port number kill -9 port number You must have extremely odd implementations of ps and kill if you expect that to do anything useful. Are you confusing port number

Re: Unable to shutdown Tomcat

2014-02-14 Thread Neven Cvetkovic
On Fri, Feb 14, 2014 at 1:44 PM, Pooja Swamy poojasw...@gmail.com wrote: I am unable to shutdown my tomcat gracefully. Everytime I try to shutdown tomcat, this is the error I get. test@17.198.48.77:/Users/test/software/tomcat/bin./startup.sh Using CATALINA_BASE: /Users/test/software/tomcat

Re: Unable to shutdown Tomcat

2014-02-14 Thread Neven Cvetkovic
On Fri, Feb 14, 2014 at 2:03 PM, Caldarale, Charles R chuck.caldar...@unisys.com wrote: From: Leo Medina [mailto:leo.medi...@gmail.com] Subject: RE: Unable to shutdown Tomcat Hello have you tried: ps -ef | grep port number kill -9 port number You must have extremely odd

Re: Unable to shutdown Tomcat

2014-02-14 Thread James H. H. Lampert
FWIW: I've had similar situations arise (we've never found a reason why, but it happens far less frequently since we updated all our Tomcat installations to a more recent release) on AS/400s. I responded to it by rewriting our shutdown CL program so that if a normal shutdown fails to bring

Re: Unable to shutdown Tomcat

2014-02-14 Thread Pooja Swamy
Thank you so much for working with me on this. I am on mac OS, and I am using tomcat-7.0.50 1. Here is my server.xml without comments - ?xml version='1.0' encoding='utf-8'? Server port=8005 shutdown=SHUTDOWN Listener className=org.apache.catalina.core.AprLifecycleListener SSLEngine=on /

Re: Unable to shutdown Tomcat

2014-02-14 Thread Leo Medina
Right thanks Chuck! I was referring to ps -ef | grep tomcat where in the past I have done it this way to issue a kill -9 on the pid as well as the netstat - vatpn | grep port number which also works perfectly. Thanks again! On Fri, Feb 14, 2014 at 11:16 AM, Neven Cvetkovic

Re: Unable to shutdown Tomcat

2014-02-14 Thread Neven Cvetkovic
On Feb 14, 2014 8:29 PM, Pooja Swamy poojasw...@gmail.com wrote: Thank you so much for working with me on this. I am on mac OS, and I am using tomcat-7.0.50 1. Here is my server.xml without comments - ?xml version='1.0' encoding='utf-8'? Server port=8005 shutdown=SHUTDOWN Listener

Re: Unable to shutdown Tomcat

2014-02-14 Thread Pooja Swamy
Btw, when I shutdown, I see this message everytime - SEVERE: Could not contact localhost:8005. Tomcat may not be running. So looks like the problem is with my startup. The startup is not happening correctly. On Fri, Feb 14, 2014 at 11:30 AM, Leo Medina leo.medi...@gmail.com wrote: Right

Re: Tomcat 8 appears slow to process jsp pages

2014-02-14 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Howard, On 2/12/14, 10:48 AM, Howard W. Smith, Jr. wrote: On Wed, Feb 12, 2014 at 9:57 AM, john.kief...@engilitycorp.com wrote: Testing Tomcat 8 I watch the console and see the Java and sql processing complete, then wait a full minute for the

RE: Unable to shutdown Tomcat

2014-02-14 Thread Caldarale, Charles R
From: Neven Cvetkovic [mailto:neven.cvetko...@gmail.com] Subject: Re: Unable to shutdown Tomcat On Feb 14, 2014 8:29 PM, Pooja Swamy poojasw...@gmail.com wrote: Server port=8005 shutdown=SHUTDOWN The above is the shutdown port. Connector port=8080 protocol=HTTP/1.1 So it is port

Re: mod-jk stopped working

2014-02-14 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Jim, On 2/12/14, 11:53 PM, Jim Borland wrote: Apache 2.2 and Tomcat 6 on Linux Ubuntu 10.10 My connector worked fine for several years and then suddenly stopped working! Now I get a requested URL was not found on this server error instead.

Re: Unable to shutdown Tomcat

2014-02-14 Thread Pooja Swamy
Here is my catalina.out Feb 14, 2014 11:30:29 AM org.apache.catalina.core.AprLifecycleListener init INFO: The APR based Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path:

Re: Versioned WAR Application

2014-02-14 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Ganeshh, On 2/12/14, 11:20 PM, Ganeshh HariHaran wrote: Please let me know where they are available, I am essentially looking for an Application both EJB and Servlets based (EAR) package, which I can accordingly make it to configure JMS, JDBC,

Re: Eclipse: Server Tomcat v7.0 Server at localhost failed to start.

2014-02-14 Thread Konstantin Kolinko
2014-02-14 18:13 GMT+04:00 JB MORLA jbmo...@gmail.com: Maybe you added a .jar file to the build path and there is a conflict with the jars already present in Eclipse and Tomcat. My solution was to remove the jars. +1. On Thu, Feb 13, 2014 at 10:27 PM, Dave Kennedy davek1...@gmail.com wrote:

Re: Number of AJP connections

2014-02-14 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Lance, On 2/13/14, 10:42 AM, Campbell, Lance wrote: Thanks a lot. That was very clear. I knew the forward caused the communication to stay on the same server. But I was not clear if it communicated by calling a class/object or by going

Re: documentation resource suggestions for scaling tomcat 7 horizontally

2014-02-14 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Lance, On 2/13/14, 11:48 AM, Campbell, Lance wrote: I am looking for free documentation for scaling Tomcat 7 horizontally. I currently have three tomcat 7 application servers load balanced. The system is working good. I have noticed that my

RE: Unable to shutdown Tomcat

2014-02-14 Thread Caldarale, Charles R
From: Pooja Swamy [mailto:poojasw...@gmail.com] Subject: Re: Unable to shutdown Tomcat I confirmed tomcat is running by doing ps -ef|grep tomcat Have you confirmed that Tomcat is usable by going to http://localhost:8080 with a browser running on the same machine Tomcat is on? You may have

Re: Unable to shutdown Tomcat

2014-02-14 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Leo, On 2/14/14, 1:52 PM, Leo Medina wrote: Hello have you tried: ps -ef | grep port number kill -9 port number That should be kill -9 pid, though I'm interested to see what happens if you try to kill by port number. - -chris On Fri, Feb

RE: Unable to shutdown Tomcat

2014-02-14 Thread Caldarale, Charles R
From: Christopher Schultz [mailto:ch...@christopherschultz.net] Subject: Re: Unable to shutdown Tomcat On 2/14/14, 1:52 PM, Leo Medina wrote: Hello have you tried: ps -ef | grep port number kill -9 port number That should be kill -9 pid, though I'm interested to see what happens if

Re: Unable to shutdown Tomcat

2014-02-14 Thread Pooja Swamy
Yes I have tried that. When I kill, the process gets killed gracefully. After killing, if I do a ps -ef|grep tomcat, I don't see the process running. Like I said the issue is not with shutdown. The issue is with startup. When I startup, the startup is not happening at all, which is what is

Re: Unable to shutdown Tomcat

2014-02-14 Thread Pooja Swamy
BTW, you need to read the whole thread before responding to intermediate entries - we're way beyond that point. - I agree. Thanks Charles. On Fri, Feb 14, 2014 at 12:08 PM, Caldarale, Charles R chuck.caldar...@unisys.com wrote: From: Christopher Schultz [mailto:ch...@christopherschultz.net]

Re: Unable to shutdown Tomcat

2014-02-14 Thread Neven Cvetkovic
On Fri, Feb 14, 2014 at 3:10 PM, Pooja Swamy poojasw...@gmail.com wrote: Yes I have tried that. When I kill, the process gets killed gracefully. After killing, if I do a ps -ef|grep tomcat, I don't see the process running. Like I said the issue is not with shutdown. The issue is with

Re: documentation resource suggestions for scaling tomcat 7 horizontally

2014-02-14 Thread Neven Cvetkovic
On Fri, Feb 14, 2014 at 3:00 PM, Christopher Schultz ch...@christopherschultz.net wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Lance, On 2/13/14, 11:48 AM, Campbell, Lance wrote: I am looking for free documentation for scaling Tomcat 7 horizontally. I currently have three

Re: Unable to shutdown Tomcat

2014-02-14 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Chuck, On 2/14/14, 3:08 PM, Caldarale, Charles R wrote: From: Christopher Schultz [mailto:ch...@christopherschultz.net] Subject: Re: Unable to shutdown Tomcat On 2/14/14, 1:52 PM, Leo Medina wrote: Hello have you tried: ps -ef | grep port

Re: documentation resource suggestions for scaling tomcat 7 horizontally

2014-02-14 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Neven, On 2/14/14, 4:12 PM, Neven Cvetkovic wrote: On Fri, Feb 14, 2014 at 3:00 PM, Christopher Schultz ch...@christopherschultz.net wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Lance, On 2/13/14, 11:48 AM, Campbell, Lance

Re: Unable to shutdown Tomcat

2014-02-14 Thread André Warnier
Pooja Swamy wrote: Yes I have tried that. When I kill, the process gets killed gracefully. After killing, if I do a ps -ef|grep tomcat, I don't see the process running. Like I said the issue is not with shutdown. The issue is with startup. When I startup, the startup is not happening at all,

Re: Eclipse: Server Tomcat v7.0 Server at localhost failed to start.

2014-02-14 Thread Dave Kennedy
OK I added servlet-api.jar and jsp-api.jar to the Launch Configuration | Classpath | Bootstrap Entries and get the following error report: HTTP Status 500 - java.lang.NoClassDefFoundError: javax/el/ELResolver HTTP Status 500 - java.lang.NoClassDefFoundError: javax/el/ELResolver

Re: Unable to shutdown Tomcat

2014-02-14 Thread Pooja Swamy
Yes. My tomcat is definitely not starting up :( I am not sure how to debug this issue though. I tried changing the port. It didn't help. For this error - SEVERE: Could not contact localhost:8005. Tomcat may not be running. When I do - myMac:logs test$ telnet localhost 8005 Trying ::1... telnet:

Re: Unable to shutdown Tomcat

2014-02-14 Thread Pooja Swamy
Here is another thing. Everytime I start tomcat, it is not throwing an error. I am able to start it up multiple times. - myMac:bin test$ ./startup.sh Using CATALINA_BASE: /Users/test/software/runtime Using CATALINA_HOME: /Users/test/software/runtime Using CATALINA_TMPDIR:

Re: Unable to shutdown Tomcat

2014-02-14 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Pooja, On 2/14/14, 5:31 PM, Pooja Swamy wrote: Yes. My tomcat is definitely not starting up :( I am not sure how to debug this issue though. I tried changing the port. It didn't help. First, make sure Tomcat isn't running (use ps to find it,

Re: Unable to shutdown Tomcat

2014-02-14 Thread Neven Cvetkovic
On Fri, Feb 14, 2014 at 5:31 PM, Pooja Swamy poojasw...@gmail.com wrote: Yes. My tomcat is definitely not starting up :( I am not sure how to debug this issue though. I tried changing the port. It didn't help. For this error - SEVERE: Could not contact localhost:8005. Tomcat may not be

Re: Unable to shutdown Tomcat

2014-02-14 Thread Pooja Swamy
Okay. Here you go - myMac:runtime test$ bin/catalina.sh run Using CATALINA_BASE: /Users/test/software/runtime Using CATALINA_HOME: /Users/test/software/runtime Using CATALINA_TMPDIR: /Users/test/software/runtime/temp Using JRE_HOME:

Re: Unable to shutdown Tomcat

2014-02-14 Thread Mark Eggers
On 2/14/2014 2:46 PM, Pooja Swamy wrote: Here is another thing. Everytime I start tomcat, it is not throwing an error. I am able to start it up multiple times. - myMac:bin test$ ./startup.sh Using CATALINA_BASE: /Users/test/software/runtime Using CATALINA_HOME: /Users/test/software/runtime

Re: Unable to shutdown Tomcat

2014-02-14 Thread Pooja Swamy
I started tomcat - test@17.198.48.77:/Users/test/software/runtime/bin./startup.sh Using CATALINA_BASE: /Users/test/software/runtime Using CATALINA_HOME: /Users/test/software/runtime Using CATALINA_TMPDIR: /Users/test/software/runtime/temp Using JRE_HOME:

Re: Unable to shutdown Tomcat

2014-02-14 Thread Mark Eggers
On 2/14/2014 3:37 PM, Pooja Swamy wrote: I started tomcat - test@17.198.48.77:/Users/test/software/runtime/bin./startup.sh Using CATALINA_BASE: /Users/test/software/runtime Using CATALINA_HOME: /Users/test/software/runtime Using CATALINA_TMPDIR: /Users/test/software/runtime/temp Using

Re: Unable to shutdown Tomcat

2014-02-14 Thread Pooja Swamy
I changed my port to 1800. 1. I got it from another server that is also running the same version. 2.b. myMac@test:/Users/test/software/tomcat/binnetstat -an | grep LISTEN tcp46 0 0 *.3283 *.*LISTEN tcp46 0 0 *.80 *.*

Re: Unable to shutdown Tomcat

2014-02-14 Thread Mark Eggers
On 2/14/2014 3:49 PM, Pooja Swamy wrote: I changed my port to 1800. 1. I got it from another server that is also running the same version. So you just copied some software over . . . Version, origin, etc. are unknown? 2.b. myMac@test:/Users/test/software/tomcat/binnetstat -an | grep

Re: Unable to shutdown Tomcat

2014-02-14 Thread Neven Cvetkovic
On Fri, Feb 14, 2014 at 6:37 PM, Pooja Swamy poojasw...@gmail.com wrote: I started tomcat - test@17.198.48.77:/Users/test/software/runtime/bin./startup.sh Using CATALINA_BASE: /Users/test/software/runtime Using CATALINA_HOME: /Users/test/software/runtime Using CATALINA_TMPDIR:

Re: Status of the current IIS ISAPI Redirector for Tomcat

2014-02-14 Thread Bilal S
Konstantin, On Fri, Jan 24, 2014 at 2:06 PM, Konstantin Preißer kpreis...@apache.orgwrote: Hi all, for my Java Servlet web applications which run on Tomcat (currently 8.0.0-RC 10) on various Windows Server OSes (currently Windows Server 2012 R2), I use the ISAPI Redirector to forward

Re: Unable to shutdown Tomcat

2014-02-14 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Pooja, On 2/14/14, 5:49 PM, Pooja Swamy wrote: Okay. Here you go - myMac:runtime test$ bin/catalina.sh run Using CATALINA_BASE: /Users/test/software/runtime Using CATALINA_HOME: /Users/test/software/runtime Using CATALINA_TMPDIR:

Re: Generate pkcs12 certificates from offical COMODO certs

2014-02-14 Thread Frank BONNET
seems to work without it ! thanks Envoyé de mon iPhone. Le 14 févr. 2014 à 16:16, Ognjen Blagojevic ognjen.d.blagoje...@gmail.com a écrit : Frank, On 14.2.2014 15:00, BONNET, Frank wrote: the intermediate cert in the one named chain right ? Yes, it is usually named that way. -Ognjen

Re: mod-jk stopped working

2014-02-14 Thread Jim Borland
Wow! I put my JkMounts inside the VirtualHost directives and now it is working again. Thank you very much! On Feb 14, 2014, at 11:52 AM, Christopher Schultz ch...@christopherschultz.net wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Jim, On 2/12/14, 11:53 PM, Jim Borland