Re: Tomat and ssl

2003-08-11 Thread John Turner
"servelet" should be "servlet", I think, unless you also have it as 
"servelet" elsewhere in your config.

The error message you're getting is the same one we discussed last week: 
are you sure you are loading mod_jk.so?

Are your mod_jk directives like "LaodModule" and "JkWorkersFile" etc. in 
httpd.conf ABOVE your SSL virtual host block?  Apache works top down 
through httpd.conf.

John

[EMAIL PROTECTED] wrote:

Greetings,
I've added the mod_jk to my apache httpd.conf file and I've placed the info from
John Turner's How TO
This is what my virtual host container but I'm getting an error when I try to
restart apache
Any ideas?


DocumentRoot /usr/local/jakarta-tomcat-4.1.27/webapps
ServerName placeanad.classifiedmarketplace.net
ErrorLog logs/placeanadclassi.com-error_log
CustomLog logs/placeanadclassi.com-access_log common
SSLEnable
SSLCertificateFile /usr/local/apache/conf/ssl.crt/server1.crt
SSLCertificateKeyFile /usr/local/apache/conf/ssl.crt/server1.key
JkMount /* ajp13
JkMount /*.jsp ajp13
JkMount /servelet/* ajp13

-bash-2.05b# cd ../bin205C written
-bash-2.05b# ./apachectl configtest
Syntax error on line 1002 of /usr/local/apache/conf/httpd.conf:
Invalid command 'JkMount', perhaps mis-spelled or defined by a module not
included in the server configuration
Bobbie Atristain
Internet Systems Administrator
Media General, INC.
804.649.6156
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


RE: Tomat and ssl

2003-08-11 Thread batristain
HI,
Okay I restarted and it now works - Thanks.

  I now have the apache part working but when I go to
https://placeanad.classifiedmarketplace.net:8080/AdWebster it doesn't work?
What else do I need to add?

Thanks,
Bobbie


-Original Message-
From: John Turner [mailto:[EMAIL PROTECTED] 
Sent: Monday, August 11, 2003 10:53 AM
To: Tomcat Users List
Subject: Re: Tomat and ssl



"servelet" should be "servlet", I think, unless you also have it as 
"servelet" elsewhere in your config.

The error message you're getting is the same one we discussed last week: 
are you sure you are loading mod_jk.so?

Are your mod_jk directives like "LaodModule" and "JkWorkersFile" etc. in 
httpd.conf ABOVE your SSL virtual host block?  Apache works top down 
through httpd.conf.

John

[EMAIL PROTECTED] wrote:

> Greetings,
> I've added the mod_jk to my apache httpd.conf file and I've placed the 
> info from John Turner's How TO This is what my virtual host container 
> but I'm getting an error when I try to restart apache
> 
> Any ideas?
> 
> 
> 
> DocumentRoot /usr/local/jakarta-tomcat-4.1.27/webapps
> ServerName placeanad.classifiedmarketplace.net
> ErrorLog logs/placeanadclassi.com-error_log
> CustomLog logs/placeanadclassi.com-access_log common
> SSLEnable
> SSLCertificateFile /usr/local/apache/conf/ssl.crt/server1.crt
> SSLCertificateKeyFile /usr/local/apache/conf/ssl.crt/server1.key
> JkMount /* ajp13
> JkMount /*.jsp ajp13
> JkMount /servelet/* ajp13
> 
> 
> 
> -bash-2.05b# cd ../bin205C written
> -bash-2.05b# ./apachectl configtest
> Syntax error on line 1002 of /usr/local/apache/conf/httpd.conf:
> Invalid command 'JkMount', perhaps mis-spelled or defined by a module 
> not included in the server configuration
> 
> 
> Bobbie Atristain
> Internet Systems Administrator
> Media General, INC.
> 804.649.6156
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Tomat and ssl

2003-08-12 Thread John Turner
If anything, it's a lowercase "k".

John

Johnson, David wrote:

Does Apache take notice of case? I always use JKMount instead of JkMount
(capital K). Could be your gremlin...
Dave




-Original Message-
From: [EMAIL PROTECTED] 
[mailto:[EMAIL PROTECTED] 
Sent: Monday, August 11, 2003 3:00 PM
To: [EMAIL PROTECTED]
Subject: Tomat and ssl

Greetings,
I've added the mod_jk to my apache httpd.conf file and I've 
placed the info from
John Turner's How TO
This is what my virtual host container but I'm getting an 
error when I try to
restart apache

Any ideas?


   DocumentRoot /usr/local/jakarta-tomcat-4.1.27/webapps
   ServerName placeanad.classifiedmarketplace.net
   ErrorLog logs/placeanadclassi.com-error_log
   CustomLog logs/placeanadclassi.com-access_log common
   SSLEnable
   SSLCertificateFile /usr/local/apache/conf/ssl.crt/server1.crt
   SSLCertificateKeyFile /usr/local/apache/conf/ssl.crt/server1.key
   JkMount /* ajp13
   JkMount /*.jsp ajp13
   JkMount /servelet/* ajp13

-bash-2.05b# cd ../bin205C written
-bash-2.05b# ./apachectl configtest
Syntax error on line 1002 of /usr/local/apache/conf/httpd.conf:
Invalid command 'JkMount', perhaps mis-spelled or defined by 
a module not
included in the server configuration

Bobbie Atristain
Internet Systems Administrator
Media General, INC.
804.649.6156
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


RE: Tomat and ssl

2003-08-14 Thread batristain
So I should uncomment the 8443 part in the server.xml?

-Original Message-
From: John Turner [mailto:[EMAIL PROTECTED] 
Sent: Monday, August 11, 2003 11:18 AM
To: Tomcat Users List
Subject: Re: Tomat and ssl



The Tomcat connector on 8080 is not HTTPS, but HTTP, so 
"https://x.x.x.x:8080/x"; will never work.

Typically, the SSL connector for Tomcat is 8443.

John

[EMAIL PROTECTED] wrote:

> HI,
> Okay I restarted and it now works - Thanks.
> 
>   I now have the apache part working but when I go to 
> https://placeanad.classifiedmarketplace.net:8080/AdWebster it doesn't 
> work? What else do I need to add?
> 
> Thanks,
> Bobbie
> 
> 
> -Original Message-
> From: John Turner [mailto:[EMAIL PROTECTED]
> Sent: Monday, August 11, 2003 10:53 AM
> To: Tomcat Users List
> Subject: Re: Tomat and ssl
> 
> 
> 
> "servelet" should be "servlet", I think, unless you also have it as
> "servelet" elsewhere in your config.
> 
> The error message you're getting is the same one we discussed last 
> week:
> are you sure you are loading mod_jk.so?
> 
> Are your mod_jk directives like "LaodModule" and "JkWorkersFile" etc. 
> in
> httpd.conf ABOVE your SSL virtual host block?  Apache works top down 
> through httpd.conf.
> 
> John
> 
> [EMAIL PROTECTED] wrote:
> 
> 
>>Greetings,
>>I've added the mod_jk to my apache httpd.conf file and I've placed the
>>info from John Turner's How TO This is what my virtual host container 
>>but I'm getting an error when I try to restart apache
>>
>>Any ideas?
>>
>>
>>
>>DocumentRoot /usr/local/jakarta-tomcat-4.1.27/webapps
>>ServerName placeanad.classifiedmarketplace.net
>>ErrorLog logs/placeanadclassi.com-error_log
>>CustomLog logs/placeanadclassi.com-access_log common
>>SSLEnable
>>SSLCertificateFile /usr/local/apache/conf/ssl.crt/server1.crt
>>SSLCertificateKeyFile /usr/local/apache/conf/ssl.crt/server1.key
>>JkMount /* ajp13
>>JkMount /*.jsp ajp13
>>JkMount /servelet/* ajp13
>>
>>
>>
>>-bash-2.05b# cd ../bin205C written
>>-bash-2.05b# ./apachectl configtest
>>Syntax error on line 1002 of /usr/local/apache/conf/httpd.conf:
>>Invalid command 'JkMount', perhaps mis-spelled or defined by a module
>>not included in the server configuration
>>
>>
>>Bobbie Atristain
>>Internet Systems Administrator
>>Media General, INC.
>>804.649.6156
>>
>>-
>>To unsubscribe, e-mail: [EMAIL PROTECTED]
>>For additional commands, e-mail: [EMAIL PROTECTED]
>>
> 
> 
> 
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: Tomat and ssl

2003-08-14 Thread Johnson, David
Does Apache take notice of case? I always use JKMount instead of JkMount
(capital K). Could be your gremlin...

Dave



> -Original Message-
> From: [EMAIL PROTECTED] 
> [mailto:[EMAIL PROTECTED] 
> Sent: Monday, August 11, 2003 3:00 PM
> To: [EMAIL PROTECTED]
> Subject: Tomat and ssl
> 
> 
> Greetings,
> I've added the mod_jk to my apache httpd.conf file and I've 
> placed the info from
> John Turner's How TO
> This is what my virtual host container but I'm getting an 
> error when I try to
> restart apache
> 
> Any ideas?
> 
> 
> 
> DocumentRoot /usr/local/jakarta-tomcat-4.1.27/webapps
> ServerName placeanad.classifiedmarketplace.net
> ErrorLog logs/placeanadclassi.com-error_log
> CustomLog logs/placeanadclassi.com-access_log common
> SSLEnable
> SSLCertificateFile /usr/local/apache/conf/ssl.crt/server1.crt
> SSLCertificateKeyFile /usr/local/apache/conf/ssl.crt/server1.key
> JkMount /* ajp13
> JkMount /*.jsp ajp13
> JkMount /servelet/* ajp13
> 
> 
> 
> -bash-2.05b# cd ../bin205C written
> -bash-2.05b# ./apachectl configtest
> Syntax error on line 1002 of /usr/local/apache/conf/httpd.conf:
> Invalid command 'JkMount', perhaps mis-spelled or defined by 
> a module not
> included in the server configuration
> 
> 
> Bobbie Atristain
> Internet Systems Administrator
> Media General, INC.
> 804.649.6156
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 
> 

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: Tomat and ssl

2003-08-14 Thread batristain
Okay I uncommented out those lines but I get page can't be displayed
https://placeanad.classifiedmarketplace.net:8443/AdWebster/index.jsp


-Original Message-
From: Atristain, Bobbie J. 
Sent: Monday, August 11, 2003 11:19 AM
To: [EMAIL PROTECTED]
Subject: RE: Tomat and ssl


So I should uncomment the 8443 part in the server.xml?

-Original Message-
From: John Turner [mailto:[EMAIL PROTECTED] 
Sent: Monday, August 11, 2003 11:18 AM
To: Tomcat Users List
Subject: Re: Tomat and ssl



The Tomcat connector on 8080 is not HTTPS, but HTTP, so 
"https://x.x.x.x:8080/x"; will never work.

Typically, the SSL connector for Tomcat is 8443.

John

[EMAIL PROTECTED] wrote:

> HI,
> Okay I restarted and it now works - Thanks.
> 
>   I now have the apache part working but when I go to
> https://placeanad.classifiedmarketplace.net:8080/AdWebster it doesn't 
> work? What else do I need to add?
> 
> Thanks,
> Bobbie
> 
> 
> -Original Message-
> From: John Turner [mailto:[EMAIL PROTECTED]
> Sent: Monday, August 11, 2003 10:53 AM
> To: Tomcat Users List
> Subject: Re: Tomat and ssl
> 
> 
> 
> "servelet" should be "servlet", I think, unless you also have it as 
> "servelet" elsewhere in your config.
> 
> The error message you're getting is the same one we discussed last
> week:
> are you sure you are loading mod_jk.so?
> 
> Are your mod_jk directives like "LaodModule" and "JkWorkersFile" etc.
> in
> httpd.conf ABOVE your SSL virtual host block?  Apache works top down 
> through httpd.conf.
> 
> John
> 
> [EMAIL PROTECTED] wrote:
> 
> 
>>Greetings,
>>I've added the mod_jk to my apache httpd.conf file and I've placed the 
>>info from John Turner's How TO This is what my virtual host container 
>>but I'm getting an error when I try to restart apache
>>
>>Any ideas?
>>
>>
>>
>>DocumentRoot /usr/local/jakarta-tomcat-4.1.27/webapps
>>ServerName placeanad.classifiedmarketplace.net
>>ErrorLog logs/placeanadclassi.com-error_log
>>CustomLog logs/placeanadclassi.com-access_log common
>>SSLEnable
>>SSLCertificateFile /usr/local/apache/conf/ssl.crt/server1.crt
>>SSLCertificateKeyFile /usr/local/apache/conf/ssl.crt/server1.key
>>JkMount /* ajp13
>>JkMount /*.jsp ajp13
>>JkMount /servelet/* ajp13
>>
>>
>>
>>-bash-2.05b# cd ../bin205C written
>>-bash-2.05b# ./apachectl configtest
>>Syntax error on line 1002 of /usr/local/apache/conf/httpd.conf:
>>Invalid command 'JkMount', perhaps mis-spelled or defined by a module 
>>not included in the server configuration
>>
>>
>>Bobbie Atristain
>>Internet Systems Administrator
>>Media General, INC.
>>804.649.6156
>>
>>-
>>To unsubscribe, e-mail: [EMAIL PROTECTED]
>>For additional commands, e-mail: [EMAIL PROTECTED]
>>
> 
> 
> 
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Tomat and ssl

2003-08-14 Thread John Turner
well, you have to go through the whole Tomcat SSL setup then.  There's 
no reason to do so.

All of your SSL stuff is being handled by Apache.  As long as 
https://www.your-url.com is working, without a port number, I would call 
it good.

John

[EMAIL PROTECTED] wrote:

Okay I uncommented out those lines but I get page can't be displayed
https://placeanad.classifiedmarketplace.net:8443/AdWebster/index.jsp
-Original Message-
From: Atristain, Bobbie J. 
Sent: Monday, August 11, 2003 11:19 AM
To: [EMAIL PROTECTED]
Subject: RE: Tomat and ssl

So I should uncomment the 8443 part in the server.xml?

-Original Message-
From: John Turner [mailto:[EMAIL PROTECTED] 
Sent: Monday, August 11, 2003 11:18 AM
To: Tomcat Users List
Subject: Re: Tomat and ssl



The Tomcat connector on 8080 is not HTTPS, but HTTP, so 
"https://x.x.x.x:8080/x"; will never work.

Typically, the SSL connector for Tomcat is 8443.

John

[EMAIL PROTECTED] wrote:


HI,
Okay I restarted and it now works - Thanks.
 I now have the apache part working but when I go to
https://placeanad.classifiedmarketplace.net:8080/AdWebster it doesn't 
work? What else do I need to add?

Thanks,
Bobbie
-Original Message-
From: John Turner [mailto:[EMAIL PROTECTED]
Sent: Monday, August 11, 2003 10:53 AM
To: Tomcat Users List
Subject: Re: Tomat and ssl


"servelet" should be "servlet", I think, unless you also have it as 
"servelet" elsewhere in your config.

The error message you're getting is the same one we discussed last
week:
are you sure you are loading mod_jk.so?
Are your mod_jk directives like "LaodModule" and "JkWorkersFile" etc.
in
httpd.conf ABOVE your SSL virtual host block?  Apache works top down 
through httpd.conf.

John

[EMAIL PROTECTED] wrote:



Greetings,
I've added the mod_jk to my apache httpd.conf file and I've placed the 
info from John Turner's How TO This is what my virtual host container 
but I'm getting an error when I try to restart apache

Any ideas?


  DocumentRoot /usr/local/jakarta-tomcat-4.1.27/webapps
  ServerName placeanad.classifiedmarketplace.net
  ErrorLog logs/placeanadclassi.com-error_log
  CustomLog logs/placeanadclassi.com-access_log common
  SSLEnable
  SSLCertificateFile /usr/local/apache/conf/ssl.crt/server1.crt
  SSLCertificateKeyFile /usr/local/apache/conf/ssl.crt/server1.key
  JkMount /* ajp13
  JkMount /*.jsp ajp13
  JkMount /servelet/* ajp13

-bash-2.05b# cd ../bin205C written
-bash-2.05b# ./apachectl configtest
Syntax error on line 1002 of /usr/local/apache/conf/httpd.conf:
Invalid command 'JkMount', perhaps mis-spelled or defined by a module 
not included in the server configuration

Bobbie Atristain
Internet Systems Administrator
Media General, INC.
804.649.6156
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Re: Tomat and ssl

2003-08-14 Thread John Turner
The Tomcat connector on 8080 is not HTTPS, but HTTP, so 
"https://x.x.x.x:8080/x"; will never work.

Typically, the SSL connector for Tomcat is 8443.

John

[EMAIL PROTECTED] wrote:

HI,
Okay I restarted and it now works - Thanks.
  I now have the apache part working but when I go to
https://placeanad.classifiedmarketplace.net:8080/AdWebster it doesn't work?
What else do I need to add?
Thanks,
Bobbie
-Original Message-
From: John Turner [mailto:[EMAIL PROTECTED] 
Sent: Monday, August 11, 2003 10:53 AM
To: Tomcat Users List
Subject: Re: Tomat and ssl



"servelet" should be "servlet", I think, unless you also have it as 
"servelet" elsewhere in your config.

The error message you're getting is the same one we discussed last week: 
are you sure you are loading mod_jk.so?

Are your mod_jk directives like "LaodModule" and "JkWorkersFile" etc. in 
httpd.conf ABOVE your SSL virtual host block?  Apache works top down 
through httpd.conf.

John

[EMAIL PROTECTED] wrote:


Greetings,
I've added the mod_jk to my apache httpd.conf file and I've placed the 
info from John Turner's How TO This is what my virtual host container 
but I'm getting an error when I try to restart apache

Any ideas?


   DocumentRoot /usr/local/jakarta-tomcat-4.1.27/webapps
   ServerName placeanad.classifiedmarketplace.net
   ErrorLog logs/placeanadclassi.com-error_log
   CustomLog logs/placeanadclassi.com-access_log common
   SSLEnable
   SSLCertificateFile /usr/local/apache/conf/ssl.crt/server1.crt
   SSLCertificateKeyFile /usr/local/apache/conf/ssl.crt/server1.key
   JkMount /* ajp13
   JkMount /*.jsp ajp13
   JkMount /servelet/* ajp13

-bash-2.05b# cd ../bin205C written
-bash-2.05b# ./apachectl configtest
Syntax error on line 1002 of /usr/local/apache/conf/httpd.conf:
Invalid command 'JkMount', perhaps mis-spelled or defined by a module 
not included in the server configuration

Bobbie Atristain
Internet Systems Administrator
Media General, INC.
804.649.6156
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]