Re: syntax error when Apache is started

2004-01-05 Thread Gil Hauer
Annimadary,

Please stop using the 'technolog.ca' domain name in your email address.
There are other avenues to pursue if you wish to maintain anonymity --
using another organization's domain name should not be one of them.

As to your problem (although I don't run Windows), could the problem be
related to the direction of your slashes (i.e., '/' is being used rather
than '\')?

(Sorry to pollute this list but the poster is not reachable any other
way)

Thanks,
Gil

On Mon, 2004-01-05 at 11:18, [EMAIL PROTECTED] wrote:
 I'm trying to connect Apache to Tomcat using mod_jk.
 
 When I start Apache, I get the following error:
 
 Syntax error on line 4 of C:/jakarta-tomcat/conf/auto/mod_jk.conf:
 LoadModule takes two arguments, a module name and the name of a shared
 object file to load it from
 
 
 Here's what written in line 4 of the mod_jk.conf:
   LoadModule jk_module C:/Program Files/Apache   
 Group/Apache/modules/mod_jk.dll
 
 
 Could anyone please help?
 
 
 This is what I added in the server.xml to auto-generate the mod_jk.conf
 file:
 Server port=8005 shutdown=SHUTDOWN debug=0
  Listener className=org.apache.ajp.tomcat4.config.ApacheConfig 
   modJk=C:\Program Files\Apache Group\Apache\modules\mod_jk.dll
   workersConfig=C:\jakarta-tomcat\conf\jk\workers.properties.conf
 /
 
 
 
 
 
 -
 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: syntax error when Apache is started

2004-01-05 Thread Stephanie A Bickel





What is in your mod_jk.conf file?



   
   
  [EMAIL PROTECTED]
 
  aytheon.com To:  [EMAIL PROTECTED]   
  
  cc:  
   
  01/05/2004 09:18 AM Subject: syntax error when 
Apache is started
  Please respond to
   
  Tomcat Users List  
   
   
   
   
   





I'm trying to connect Apache to Tomcat using mod_jk.

When I start Apache, I get the following error:

Syntax error on line 4 of C:/jakarta-tomcat/conf/auto/mod_jk.conf:
LoadModule takes two arguments, a module name and the name of a shared
object file to load it from


Here's what written in line 4 of the mod_jk.conf:
  LoadModule jk_module C:/Program Files/Apache
Group/Apache/modules/mod_jk.dll


Could anyone please help?


This is what I added in the server.xml to auto-generate the mod_jk.conf
file:
Server port=8005 shutdown=SHUTDOWN debug=0
 Listener className=org.apache.ajp.tomcat4.config.ApacheConfig
 modJk=C:\Program Files\Apache
Group\Apache\modules\mod_jk.dll

workersConfig=C:\jakarta-tomcat\conf\jk\workers.properties.conf
/





-
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: syntax error when Apache is started

2004-01-05 Thread Shapira, Yoav

Howdy,
Chill out with the derogatory comments, there's no need to call anyone a
fool.

Yoav Shapira
Millennium ChemInformatics


-Original Message-
From: Giuliano Gavazzi [mailto:[EMAIL PROTECTED]
Sent: Monday, January 05, 2004 2:42 PM
To: Tomcat Users List
Subject: Re:syntax error when Apache is started

fools... his From: header does not contain a domain but just a
username and your mailservers did complete it with their local
domain name. Pretty bad choice, modifying the content of the From
header, urgh...

Giuliano

At 11:13 am -0800 2004/01/05, Robert Hall wrote:
Gil,

I was wondering who annimandary is since the email I received from
him
uses the same domain name as my own, uclink.berkeley.edu, and he is
not
in our Directory.

Pretty slippery, getting ezmlm to dynamically spoof email addresses.

Robert

Gil Hauer wrote:

Annimadary,

Please stop using the 'technolog.ca' domain name in your email
address.
There are other avenues to pursue if you wish to maintain anonymity
--
using another organization's domain name should not be one of them.


[...]

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




This e-mail, including any attachments, is a confidential business communication, and 
may contain information that is confidential, proprietary and/or privileged.  This 
e-mail is intended only for the individual(s) to whom it is addressed, and may not be 
saved, copied, printed, disclosed or used by anyone else.  If you are not the(an) 
intended recipient, please immediately delete this e-mail from your computer system 
and notify the sender.  Thank you.


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



RE: syntax error when Apache is started

2004-01-05 Thread Giuliano Gavazzi
At 2:50 pm -0500 2004/01/05, Shapira, Yoav wrote:
Howdy,
Chill out with the derogatory comments, there's no need to call anyone a
fool.
my apologies, it was intended with a smile! (I never put smileys 
though, just dots...). I would have been fooled myself of course, it 
only clicked because of the two reports!

Giuliano

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


Re: syntax error when Apache is started

2004-01-05 Thread Nikola Milutinovic
[EMAIL PROTECTED] wrote:

I'm trying to connect Apache to Tomcat using mod_jk.

When I start Apache, I get the following error:

Syntax error on line 4 of C:/jakarta-tomcat/conf/auto/mod_jk.conf:
LoadModule takes two arguments, a module name and the name of a shared
object file to load it from
Here's what written in line 4 of the mod_jk.conf:
  LoadModule jk_module C:/Program Files/Apache	   
Group/Apache/modules/mod_jk.dll
As far as Apache is concerned, there are 4 arguments - notice the   in the 
module path :-)

Use quotation marks:

LoadModule jk_module C:/Program Files/Apache Group/Apache/modules/mod_jk.dll

Nix.

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


Re: syntax error when Apache is started

2004-01-05 Thread Pavan Kumar
I think on windows we need to use '\' instead of '/'
Regards,
Pavan Kumar
TCS
Mobile : 91 033-32657004


- Original Message -
From: Nikola Milutinovic [EMAIL PROTECTED]
To: Tomcat Users List [EMAIL PROTECTED]
Sent: Tuesday, January 06, 2004 1:02 AM
Subject: Re: syntax error when Apache is started


 [EMAIL PROTECTED] wrote:

  I'm trying to connect Apache to Tomcat using mod_jk.
 
  When I start Apache, I get the following error:
 
  Syntax error on line 4 of C:/jakarta-tomcat/conf/auto/mod_jk.conf:
  LoadModule takes two arguments, a module name and the name of a shared
  object file to load it from
 
 
  Here's what written in line 4 of the mod_jk.conf:
LoadModule jk_module C:/Program Files/Apache
  Group/Apache/modules/mod_jk.dll

 As far as Apache is concerned, there are 4 arguments - notice the   in
the
 module path :-)

 Use quotation marks:

 LoadModule jk_module C:/Program Files/Apache
Group/Apache/modules/mod_jk.dll

 Nix.


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


DISCLAIMER: The information contained in this message is intended only and solely for 
the addressed individual or entity indicated in this message and for the exclusive use 
of the said addressed individual or entity indicated in this message (or responsible 
for delivery of the message to such person) and may contain legally privileged and 
confidential information belonging to Tata Consultancy Services. It must not be 
printed, read, copied, disclosed, forwarded, distributed or used (in whatsoever 
manner) by any person other than the addressee. Unauthorized use, disclosure or 
copying is strictly prohibited and may constitute unlawful act and can possibly 
attract legal action, civil and/or criminal. The contents of this message need not 
necessarily reflect or endorse the views of Tata Consultancy Services on any subject 
matter. Any action taken or omitted to be taken based on this message is entirely at 
your risk and neither the originator of this message nor Tata Consultancy Services 
takes any responsibility or liability towards the same. Opinions, conclusions and any 
other information contained in this message that do not relate to the official 
business of Tata Consultancy Services shall be understood as neither given nor 
endorsed by Tata Consultancy Services or any affiliate of Tata Consultancy Services. 
If you have received this message in error, you should destroy this message and may 
please notify the sender by e-mail. Thank you.


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