RE: apache error?

2002-09-13 Thread Turner, John


What mod_jk.so are you using?  Where did you get it, how did you get it?
Did you build it from source?  If so, how?

John

 -Original Message-
 From: hari hari [mailto:[EMAIL PROTECTED]]
 Sent: Thursday, September 12, 2002 8:26 PM
 To: [EMAIL PROTECTED]
 Subject: Re: apache error?
 
 
 my many many thnak you to you friendes,
 
 I sending following files with this email you asked.
 1)httpd.conf (attached)
 2)server.xml (attached with thsi email)
 
 The rest files are inline with this email since they are 
 small and so as 
 follows:
 My workers.properties file containing following lines:
 
 workers.tomcat_home=/jboss/catalina
 workers.java_home=/usr/java130
 ps=/
 worker.list=ajp12, ajp13, ajp14
 worker.ajp13.port=8009
 worker.ajp13.host=100.200.100.200
 worker.ajp13.type=ajp13
 
 My mod_jk.conf file is containing following lines:
 LoadModule jk_module modules/mod_jk.so
 #AddModule mod_jk.c
 IfModule mod_jk.c
 JkWorkersFile /jboss/catalina/conf/jk/workers.properties
 JkLogFile  logs/jk.log
 JkLogLevel warn
 JkMount /*.jsp ajp12
 JkMount /servlet/* ajp12
 JkMount /examples/* ajp12
 /IfModule
 
 I using Apache 2.0.40, Tomcat 4.0.4 and IBM AIX 5.1 System
 
 Ploice helping me - i trying to hard.
 
 my thank you to all you.
 
 --hari
 
 
 
 
 
 From: Habibak haAlbek [EMAIL PROTECTED]
 Reply-To: Tomcat Users List [EMAIL PROTECTED]
 To: Tomcat Users List [EMAIL PROTECTED]
 Subject: Re: apache error?
 Date: Thu, 12 Sep 2002 17:01:29 -0700 (PDT)
 
 
 In your reply, please attach the following files:
 httpd.conf
 workers.properties
 server.xml
 mod_jk.conf (if you have one) and any other files
 What apache version are you using? are you using plain or 
 apache with SSL?
 What tomcat version are you using?
 How did you obtain the mod_jk.so?
 What JDK version are you using?
 operating system? and version?
 
   hari hari wrote:hi
 
 thanks to you foe reply me email.
 
 i try to create libexec directory and putting mod_jk.so in 
 that directory
 but it is show same error. And i changing permission of 
 mod_jk.so to 755 
 but
 still no working.
 
 helping me.
 --
 hari
 
 
  From: [EMAIL PROTECTED]
  To: hari hari
  CC: [EMAIL PROTECTED]
  Subject: Re: apache error?
  Date: Thu, 12 Sep 2002 14:54:17 -0400
  
  
  
  hari,
  
  1. Is there a libexec directory where you can place 
 that I beleive
  modules directory is applicable for windows
  2. Check the permission on the mod_jk.so file, you may need to do 
 something
  like that: chmod 755 mod_jk.so to give it the appropriate 
 permissions.
  
  
  
  
  
  
  hari hari on 09/12/2002 02:27:39 PM
  
  To: [EMAIL PROTECTED]
  cc:
  
  Subject: Re: apache error?
  
  
  Hi my friends,
  
  my many thank you to all of you.
  
  i mentioned in my last mail messg, I using apache 2.0.40 
 and tomcat 4.0.4
  on
  IBM aix 5.1 systems.
  
  I having errers when running my apache as follows. my 
 friend emiled me
  mod_jk.so and telling me to put that mod_jk.so in
  /usr/local/apache2/modules
  directory and I did that and it is giving problems.
  
  #./apachectl start
  Syntax error on line 1 of /jboss/catalina/conf/auto/mod_jk.conf:
  Cannot load /usr/local/apache2/modules/mod_jk.so into server:
  #
  
  I adding following lines at the very end of my httpd.conf file:
  Include /jboss/catalina/conf/auto/mod_jk.conf
  
  My mod_jk.conf file is below:
  LoadModule jk_module modules/mod_jk.so
  
  JkWorkersFile /jboss/catalina/conf/jk/workers.properties
  JkLogFile logs/jk.log
  JkLogLevel warn
  JkMount /*.jsp ajp12
  JkMount /servlet/* ajp12
  JkMount /examples/* ajp12
  
  
  ploice helping me.
  
  --hari
 
 
 _
 Join the world's largest e-mail service with MSN Hotmail. 
 http://www.hotmail.com
 

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




RE: apache error?

2002-09-12 Thread Turner, John


Do you have the right mod_jk.so  The mod_jk.so for Apache 1.3 is not the
same mod_jk.so for Apache 2.0.

John


 -Original Message-
 From: hari hari [mailto:[EMAIL PROTECTED]]
 Sent: Wednesday, September 11, 2002 8:47 PM
 To: [EMAIL PROTECTED]
 Cc: [EMAIL PROTECTED]
 Subject: RE: apache error?
 
 
 thanks Galbayar,
 
 apache 2 does NOT have libexec directory - but has modules directory 
 instead.
 
 pl. helping me
 
 --hari
 
 
 
 From: Galbayar [EMAIL PROTECTED]
 Reply-To: Tomcat Users List [EMAIL PROTECTED]
 To: Tomcat Users List [EMAIL PROTECTED]
 Subject: RE: apache error?
 Date: Thu, 12 Sep 2002 09:45:32 +0900
 
 copy mod_jk.so to apache/libexec dir
 
 my server httpd.conf is
 
 LoadModulejk_module  libexec/mod_jk.so
 AddModule mod_jk.c
 JkWorkersFile /usr/local/jakarta-tomcat-4.0.3/conf/workers.properties
 JkLogFile /var/log/apache/mod_jk.log
 JkLogLevelinfo
 JkLogStampFormat [%a %b %d %H:%M:%S %Y] 
 
 Alias /administrator/
 /usr/local/jakarta-tomcat-4.0.3/webapps/administrator
 
  Directory 
 /usr/local/jakarta-tomcat-4.0.3/webapps/administrator
  AuthName Admin
  AuthType Basic
  AuthUserFile /usr/local/apache/bin/usr.pwd
  Require valid-user
  AllowOverride None
  Options None
  DirectoryIndex index.jsp
  /Directory
 JkMount /administrator/* ajp13
 JkMount /administrator/servlet/* ajp13
 
 
 -Original Message-
 From: hari hari [mailto:[EMAIL PROTECTED]]
 Sent: Thursday, September 12, 2002 9:14 AM
 To: [EMAIL PROTECTED]
 Cc: [EMAIL PROTECTED]
 Subject: RE: apache error?
 
 
 hi Galbayar,
 
 my thanks to you.
 
 i tried to put the following at my mod_jk.conf - but still 
 it not works. It
 is gives me same error.
 
 Directory Alias dir
   AllowOverride None
   deny from all
 /Directory
 
 I am geting following error
 # ./apachectl start
 Syntax error on line 1 of /jboss/catalina/conf/auto/mod_jk.conf:
 Cannot load /usr/local/apache2/modules/mod_jk.so into server:
 #
 
 I have following file as my mod_jk.conf. I tried all 
 combinations but still
 getting same above error
 
 LoadModule jk_module modules/mod_jk.so
 AddModule mod_jk.c
 IfModule mod_jk.c
 JkWorkersFile /jboss/catalina/conf/jk/workers.properties
 JkLogFile  logs/jk.log
 JkLogLevel warn
 JkMount /*.jsp ajp12
 JkMount /servlet/* ajp12
 JkMount /examples/* ajp12
 /IfModule
 Directory Alias dir
  AllowOverride None
  deny from all
 /Directory
 
 thanks to you
 
 hari
 
 
  From: Galbayar [EMAIL PROTECTED]
  Reply-To: Tomcat Users List [EMAIL PROTECTED]
  To: Tomcat Users List [EMAIL PROTECTED]
  Subject: RE: apache error?
  Date: Thu, 12 Sep 2002 09:02:28 +0900
  
  add this to the mod_jk.conf
  Directory Alias dir
   AllowOverride None
   deny from all
  /Directory
  
  -Original Message-
  From: hari hari [mailto:[EMAIL PROTECTED]]
  Sent: Thursday, September 12, 2002 6:46 AM
  To: [EMAIL PROTECTED]
  Cc: [EMAIL PROTECTED]
  Subject: Re: apache error?
  
  
  my many thank you Charbel.
  
  do u mean that i need to add Addmodule to httpd.conf or 
 mod_jk.conf?
  
  In httpd.conf, I have put following line at the exact end.
  Include /jboss/catalina/conf/auto/mod_jk.conf
  
  
  And, my mod_jk.conf is containing following lines:
  LoadModule jk_module modules/mod_jk.so
  IfModule mod_jk.c
  JkWorkersFile /jboss/catalina/conf/jk/workers.properties
  JkLogFile  logs/jk.log
  JkLogLevel warn
  JkMount /*.jsp ajp12
  JkMount /servlet/* ajp12
  JkMount /examples/* ajp12
  /IfModule
  
  Pl. helping me.
  
  --
  hari
  
  
  
  
  
   From: [EMAIL PROTECTED]
 
 
 
 _
 Chat with friends online, try MSN Messenger: http://messenger.msn.com
 
 
 --
 To unsubscribe, e-mail:
 mailto:[EMAIL PROTECTED]
 For additional commands, e-mail:
 mailto:[EMAIL PROTECTED]
 
 
 
 --
 To unsubscribe, e-mail:   
 mailto:[EMAIL PROTECTED]
 For additional commands, e-mail: 
 mailto:[EMAIL PROTECTED]
 
 
 
 
 _
 Join the world's largest e-mail service with MSN Hotmail. 
 http://www.hotmail.com
 
 
 --
 To unsubscribe, e-mail:   
mailto:[EMAIL PROTECTED]
For additional commands, e-mail:
mailto:[EMAIL PROTECTED]

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




Re: apache error?

2002-09-12 Thread charbel . achkar



Yes. Its best to add it with the mod_jk file that you are then including in
the httpd.conf


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




Re: apache error?

2002-09-12 Thread hari hari

Hi my friends,

my many thank you to all of you.

i mentioned in my last mail messg, I using apache 2.0.40 and tomcat 4.0.4 on 
IBM aix 5.1 systems.

I having errers when running my apache as follows. my friend emiled me 
mod_jk.so and telling me to put that mod_jk.so in /usr/local/apache2/modules 
directory and I did that and it is giving problems.

#./apachectl start
Syntax error on line 1 of /jboss/catalina/conf/auto/mod_jk.conf:
Cannot load /usr/local/apache2/modules/mod_jk.so into server:
#

I adding following lines at the very end of my httpd.conf file:
Include /jboss/catalina/conf/auto/mod_jk.conf

My mod_jk.conf file is below:
LoadModule jk_module modules/mod_jk.so
IfModule mod_jk.c
JkWorkersFile /jboss/catalina/conf/jk/workers.properties
JkLogFile  logs/jk.log
JkLogLevel warn
JkMount /*.jsp ajp12
JkMount /servlet/* ajp12
JkMount /examples/* ajp12
/IfModule

ploice helping me.

--hari




_
MSN Photos is the easiest way to share and print your photos: 
http://photos.msn.com/support/worldwide.aspx


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




RE: apache error?

2002-09-12 Thread Turner, John


Please send questions and requests for help to the tomcat-user list.


John Turner


 -Original Message-
 From: hari hari [mailto:[EMAIL PROTECTED]]
 Sent: Thursday, September 12, 2002 2:28 PM
 To: [EMAIL PROTECTED]
 Subject: Re: apache error?
 
 
 Hi my friends,
 
 my many thank you to all of you.
 
 i mentioned in my last mail messg, I using apache 2.0.40 and 
 tomcat 4.0.4 on 
 IBM aix 5.1 systems.
 
 I having errers when running my apache as follows. my friend 
 emiled me 
 mod_jk.so and telling me to put that mod_jk.so in 
 /usr/local/apache2/modules 
 directory and I did that and it is giving problems.
 
 #./apachectl start
 Syntax error on line 1 of /jboss/catalina/conf/auto/mod_jk.conf:
 Cannot load /usr/local/apache2/modules/mod_jk.so into server:
 #
 
 I adding following lines at the very end of my httpd.conf file:
 Include /jboss/catalina/conf/auto/mod_jk.conf
 
 My mod_jk.conf file is below:
 LoadModule jk_module modules/mod_jk.so
 IfModule mod_jk.c
 JkWorkersFile /jboss/catalina/conf/jk/workers.properties
 JkLogFile  logs/jk.log
 JkLogLevel warn
 JkMount /*.jsp ajp12
 JkMount /servlet/* ajp12
 JkMount /examples/* ajp12
 /IfModule
 
 ploice helping me.
 
 --hari
 
 
 
 
 _
 MSN Photos is the easiest way to share and print your photos: 
 http://photos.msn.com/support/worldwide.aspx
 
 
 --
 To unsubscribe, e-mail:   
mailto:[EMAIL PROTECTED]
For additional commands, e-mail:
mailto:[EMAIL PROTECTED]

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




Re: apache error?

2002-09-12 Thread Peter T. Abplanalp

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

* On Thu, Sep 12, 2002 at 02:30:39PM -0400, Turner, John wrote:
 
 Please send questions and requests for help to the tomcat-user list.

i think he did but he bcc'ed the list for some reason.  at
least that is what i infer from the headers.

- -- 
Peter Abplanalp
PGP: pgp.mit.edu
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.0.7 (GNU/Linux)

iD8DBQE9gOGMggA8sH0iRXQRAnEcAKCpFkkL83KigleKc2z1ZGu6gZUmAwCdEszE
gFE8xzK1ez+wgntWHMILEs8=
=bnUd
-END PGP SIGNATURE-

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




Re: apache error?

2002-09-12 Thread hari hari

hi

thanks to you foe reply me email.

i try to create libexec directory and putting mod_jk.so in that directory 
but it is show same error. And i changing permission of mod_jk.so to 755 but 
still no working.

helping me.
--
hari


From: [EMAIL PROTECTED]
To: hari hari [EMAIL PROTECTED]
CC: [EMAIL PROTECTED]
Subject: Re: apache error?
Date: Thu, 12 Sep 2002 14:54:17 -0400



hari,

1.  Is there a libexec directory where you can place that I beleive
modules directory is applicable for windows
2. Check the permission on the mod_jk.so file, you may need to do something
like that: chmod 755 mod_jk.so to give it the appropriate permissions.






hari hari [EMAIL PROTECTED] on 09/12/2002 02:27:39 PM

To:   [EMAIL PROTECTED]
cc:

Subject:  Re: apache error?


Hi my friends,

my many thank you to all of you.

i mentioned in my last mail messg, I using apache 2.0.40 and tomcat 4.0.4
on
IBM aix 5.1 systems.

I having errers when running my apache as follows. my friend emiled me
mod_jk.so and telling me to put that mod_jk.so in
/usr/local/apache2/modules
directory and I did that and it is giving problems.

#./apachectl start
Syntax error on line 1 of /jboss/catalina/conf/auto/mod_jk.conf:
Cannot load /usr/local/apache2/modules/mod_jk.so into server:
#

I adding following lines at the very end of my httpd.conf file:
Include /jboss/catalina/conf/auto/mod_jk.conf

My mod_jk.conf file is below:
LoadModule jk_module modules/mod_jk.so
IfModule mod_jk.c
JkWorkersFile /jboss/catalina/conf/jk/workers.properties
JkLogFile  logs/jk.log
JkLogLevel warn
JkMount /*.jsp ajp12
JkMount /servlet/* ajp12
JkMount /examples/* ajp12
/IfModule

ploice helping me.

--hari




_
MSN Photos is the easiest way to share and print your photos:
http://photos.msn.com/support/worldwide.aspx




_
MSN Photos is the easiest way to share and print your photos: 
http://photos.msn.com/support/worldwide.aspx


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




Re: apache error?

2002-09-12 Thread Habibak haAlbek


In your reply, please attach the following files:
httpd.conf
workers.properties
server.xml
mod_jk.conf (if you have one) and any other files
What apache version are you using? are you using plain or apache with SSL?
What tomcat version are you using?
How did you obtain the mod_jk.so?
What JDK version are you using?
operating system? and version?
 
 hari hari wrote:hi

thanks to you foe reply me email.

i try to create libexec directory and putting mod_jk.so in that directory 
but it is show same error. And i changing permission of mod_jk.so to 755 but 
still no working.

helping me.
--
hari


From: [EMAIL PROTECTED]
To: hari hari 
CC: [EMAIL PROTECTED]
Subject: Re: apache error?
Date: Thu, 12 Sep 2002 14:54:17 -0400



hari,

1. Is there a libexec directory where you can place that I beleive
modules directory is applicable for windows
2. Check the permission on the mod_jk.so file, you may need to do something
like that: chmod 755 mod_jk.so to give it the appropriate permissions.






hari hari on 09/12/2002 02:27:39 PM

To: [EMAIL PROTECTED]
cc:

Subject: Re: apache error?


Hi my friends,

my many thank you to all of you.

i mentioned in my last mail messg, I using apache 2.0.40 and tomcat 4.0.4
on
IBM aix 5.1 systems.

I having errers when running my apache as follows. my friend emiled me
mod_jk.so and telling me to put that mod_jk.so in
/usr/local/apache2/modules
directory and I did that and it is giving problems.

#./apachectl start
Syntax error on line 1 of /jboss/catalina/conf/auto/mod_jk.conf:
Cannot load /usr/local/apache2/modules/mod_jk.so into server:
#

I adding following lines at the very end of my httpd.conf file:
Include /jboss/catalina/conf/auto/mod_jk.conf

My mod_jk.conf file is below:
LoadModule jk_module modules/mod_jk.so

JkWorkersFile /jboss/catalina/conf/jk/workers.properties
JkLogFile logs/jk.log
JkLogLevel warn
JkMount /*.jsp ajp12
JkMount /servlet/* ajp12
JkMount /examples/* ajp12


ploice helping me.

--hari




_
MSN Photos is the easiest way to share and print your photos:
http://photos.msn.com/support/worldwide.aspx




_
MSN Photos is the easiest way to share and print your photos: 
http://photos.msn.com/support/worldwide.aspx


--
To unsubscribe, e-mail: 
For additional commands, e-mail: 



-
Do you Yahoo!?
Yahoo! News - Today's headlines


Re: apache error?

2002-09-12 Thread hari hari

my many many thnak you to you friendes,

I sending following files with this email you asked.
1)httpd.conf (attached)
2)server.xml (attached with thsi email)

The rest files are inline with this email since they are small and so as 
follows:
My workers.properties file containing following lines:

workers.tomcat_home=/jboss/catalina
workers.java_home=/usr/java130
ps=/
worker.list=ajp12, ajp13, ajp14
worker.ajp13.port=8009
worker.ajp13.host=100.200.100.200
worker.ajp13.type=ajp13

My mod_jk.conf file is containing following lines:
LoadModule jk_module modules/mod_jk.so
#AddModule mod_jk.c
IfModule mod_jk.c
JkWorkersFile /jboss/catalina/conf/jk/workers.properties
JkLogFile  logs/jk.log
JkLogLevel warn
JkMount /*.jsp ajp12
JkMount /servlet/* ajp12
JkMount /examples/* ajp12
/IfModule

I using Apache 2.0.40, Tomcat 4.0.4 and IBM AIX 5.1 System

Ploice helping me - i trying to hard.

my thank you to all you.

--hari





From: Habibak haAlbek [EMAIL PROTECTED]
Reply-To: Tomcat Users List [EMAIL PROTECTED]
To: Tomcat Users List [EMAIL PROTECTED]
Subject: Re: apache error?
Date: Thu, 12 Sep 2002 17:01:29 -0700 (PDT)


In your reply, please attach the following files:
httpd.conf
workers.properties
server.xml
mod_jk.conf (if you have one) and any other files
What apache version are you using? are you using plain or apache with SSL?
What tomcat version are you using?
How did you obtain the mod_jk.so?
What JDK version are you using?
operating system? and version?

  hari hari wrote:hi

thanks to you foe reply me email.

i try to create libexec directory and putting mod_jk.so in that directory
but it is show same error. And i changing permission of mod_jk.so to 755 
but
still no working.

helping me.
--
hari


 From: [EMAIL PROTECTED]
 To: hari hari
 CC: [EMAIL PROTECTED]
 Subject: Re: apache error?
 Date: Thu, 12 Sep 2002 14:54:17 -0400
 
 
 
 hari,
 
 1. Is there a libexec directory where you can place that I beleive
 modules directory is applicable for windows
 2. Check the permission on the mod_jk.so file, you may need to do 
something
 like that: chmod 755 mod_jk.so to give it the appropriate permissions.
 
 
 
 
 
 
 hari hari on 09/12/2002 02:27:39 PM
 
 To: [EMAIL PROTECTED]
 cc:
 
 Subject: Re: apache error?
 
 
 Hi my friends,
 
 my many thank you to all of you.
 
 i mentioned in my last mail messg, I using apache 2.0.40 and tomcat 4.0.4
 on
 IBM aix 5.1 systems.
 
 I having errers when running my apache as follows. my friend emiled me
 mod_jk.so and telling me to put that mod_jk.so in
 /usr/local/apache2/modules
 directory and I did that and it is giving problems.
 
 #./apachectl start
 Syntax error on line 1 of /jboss/catalina/conf/auto/mod_jk.conf:
 Cannot load /usr/local/apache2/modules/mod_jk.so into server:
 #
 
 I adding following lines at the very end of my httpd.conf file:
 Include /jboss/catalina/conf/auto/mod_jk.conf
 
 My mod_jk.conf file is below:
 LoadModule jk_module modules/mod_jk.so
 
 JkWorkersFile /jboss/catalina/conf/jk/workers.properties
 JkLogFile logs/jk.log
 JkLogLevel warn
 JkMount /*.jsp ajp12
 JkMount /servlet/* ajp12
 JkMount /examples/* ajp12
 
 
 ploice helping me.
 
 --hari


_
Join the world’s largest e-mail service with MSN Hotmail. 
http://www.hotmail.com


#
# Based upon the NCSA server configuration files originally by Rob McCool.
#
# This is the main Apache server configuration file.  It contains the
# configuration directives that give the server its instructions.
# See URL:http://httpd.apache.org/docs-2.0/ for detailed information about
# the directives.
#
# Do NOT simply read the instructions in here without understanding
# what they do.  They're here only as hints or reminders.  If you are unsure
# consult the online docs. You have been warned.
#
# The configuration directives are grouped into three basic sections:
#  1. Directives that control the operation of the Apache server process as 
a
# whole (the 'global environment').
#  2. Directives that define the parameters of the 'main' or 'default' 
server,
# which responds to requests that aren't handled by a virtual host.
# These directives also provide default values for the settings
# of all virtual hosts.
#  3. Settings for virtual hosts, which allow Web requests to be sent to
# different IP addresses or hostnames and have them handled by the
# same Apache server process.
#
# Configuration and logfile names: If the filenames you specify for many
# of the server's control files begin with / (or drive:/ for Win32), the
# server will use that explicit path.  If the filenames do *not* begin
# with /, the value of ServerRoot is prepended -- so logs/foo.log
# with ServerRoot set to /usr/local/apache2 will be interpreted by the
# server as /usr/local/apache2/logs/foo.log.
#

### Section 1: Global Environment
#
# The directives in this section affect the overall operation of Apache,
# such as the number of concurrent requests

RE: apache error?

2002-09-12 Thread Galbayar

download mod_jk source and compile it

-Original Message-
From: hari hari [mailto:[EMAIL PROTECTED]]
Sent: Friday, September 13, 2002 9:26 AM
To: [EMAIL PROTECTED]
Subject: Re: apache error?


my many many thnak you to you friendes,

I sending following files with this email you asked.
1)httpd.conf (attached)
2)server.xml (attached with thsi email)

The rest files are inline with this email since they are small and so as
follows:
My workers.properties file containing following lines:

workers.tomcat_home=/jboss/catalina
workers.java_home=/usr/java130
ps=/
worker.list=ajp12, ajp13, ajp14
worker.ajp13.port=8009
worker.ajp13.host=100.200.100.200
worker.ajp13.type=ajp13

My mod_jk.conf file is containing following lines:
LoadModule jk_module modules/mod_jk.so
#AddModule mod_jk.c
IfModule mod_jk.c
JkWorkersFile /jboss/catalina/conf/jk/workers.properties
JkLogFile  logs/jk.log
JkLogLevel warn
JkMount /*.jsp ajp12
JkMount /servlet/* ajp12
JkMount /examples/* ajp12
/IfModule

I using Apache 2.0.40, Tomcat 4.0.4 and IBM AIX 5.1 System

Ploice helping me - i trying to hard.

my thank you to all you.

--hari





From: Habibak haAlbek [EMAIL PROTECTED]
Reply-To: Tomcat Users List [EMAIL PROTECTED]
To: Tomcat Users List [EMAIL PROTECTED]
Subject: Re: apache error?
Date: Thu, 12 Sep 2002 17:01:29 -0700 (PDT)


In your reply, please attach the following files:
httpd.conf
workers.properties
server.xml
mod_jk.conf (if you have one) and any other files
What apache version are you using? are you using plain or apache with SSL?
What tomcat version are you using?
How did you obtain the mod_jk.so?
What JDK version are you using?
operating system? and version?

  hari hari wrote:hi

thanks to you foe reply me email.

i try to create libexec directory and putting mod_jk.so in that directory
but it is show same error. And i changing permission of mod_jk.so to 755
but
still no working.

helping me.
--
hari


 From: [EMAIL PROTECTED]
 To: hari hari
 CC: [EMAIL PROTECTED]
 Subject: Re: apache error?
 Date: Thu, 12 Sep 2002 14:54:17 -0400
 
 
 
 hari,
 
 1. Is there a libexec directory where you can place that I beleive
 modules directory is applicable for windows
 2. Check the permission on the mod_jk.so file, you may need to do
something
 like that: chmod 755 mod_jk.so to give it the appropriate permissions.
 
 
 
 
 
 
 hari hari on 09/12/2002 02:27:39 PM
 
 To: [EMAIL PROTECTED]
 cc:
 
 Subject: Re: apache error?
 
 
 Hi my friends,
 
 my many thank you to all of you.
 
 i mentioned in my last mail messg, I using apache 2.0.40 and tomcat 4.0.4
 on
 IBM aix 5.1 systems.
 
 I having errers when running my apache as follows. my friend emiled me
 mod_jk.so and telling me to put that mod_jk.so in
 /usr/local/apache2/modules
 directory and I did that and it is giving problems.
 
 #./apachectl start
 Syntax error on line 1 of /jboss/catalina/conf/auto/mod_jk.conf:
 Cannot load /usr/local/apache2/modules/mod_jk.so into server:
 #
 
 I adding following lines at the very end of my httpd.conf file:
 Include /jboss/catalina/conf/auto/mod_jk.conf
 
 My mod_jk.conf file is below:
 LoadModule jk_module modules/mod_jk.so
 
 JkWorkersFile /jboss/catalina/conf/jk/workers.properties
 JkLogFile logs/jk.log
 JkLogLevel warn
 JkMount /*.jsp ajp12
 JkMount /servlet/* ajp12
 JkMount /examples/* ajp12
 
 
 ploice helping me.
 
 --hari


_
Join the worlds largest e-mail service with MSN Hotmail.
http://www.hotmail.com


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




Re: apache error?

2002-09-11 Thread Milt Epstein

On Wed, 11 Sep 2002, hari hari wrote:

 Hi,

 i running apache 2.0.40 and run tomcat 4.0.4 and getting mod_jk.so file and
 put that file in /usr/local/apache2/modules and when run following, i get
 bugs:

 # ./apachectl configtest
 Syntax error on line 1 of /jboss/catalina/conf/auto/mod_jk.conf:
 Cannot load /usr/local/apache2/modules/mod_jk.so into server:

 my mod_jk.conf file is very small and very simple and easy:

 LoadModule jk_module modules/mod_jk.so
 IfModule mod_jk.c
 JkWorkersFile /jboss/catalina/conf/jk/workers.properties
 JkLogFile  logs/jk.log
 JkLogLevel warn
 JkMount /*.jsp ajp12
 JkMount /servlet/* ajp12
 JkMount /examples/* ajp12
 /IfModule

 police hepl me in above error removing - sory for my engllish

Looks like it can't find your mod_jk.so -- where is it located, do you
have it in the right place?

Milt Epstein
Research Programmer
Integration and Software Engineering (ISE)
Campus Information Technologies and Educational Services (CITES)
University of Illinois at Urbana-Champaign (UIUC)
[EMAIL PROTECTED]


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




Re: apache error?

2002-09-11 Thread hari hari

i thanks Milt of sending my answere.
i told in last mail, my mod_jk.so file is put in /usr/local/apache2/modules 
but still it is givng me error.

pl. give other inform.

--
hari


From: Milt Epstein [EMAIL PROTECTED]
Reply-To: Tomcat Users List [EMAIL PROTECTED]
To: Tomcat Users List [EMAIL PROTECTED]
Subject: Re: apache error?
Date: Wed, 11 Sep 2002 16:24:36 -0500 (CDT)

On Wed, 11 Sep 2002, hari hari wrote:

  Hi,
 
  i running apache 2.0.40 and run tomcat 4.0.4 and getting mod_jk.so file 
and
  put that file in /usr/local/apache2/modules and when run following, i 
get
  bugs:
 
  # ./apachectl configtest
  Syntax error on line 1 of /jboss/catalina/conf/auto/mod_jk.conf:
  Cannot load /usr/local/apache2/modules/mod_jk.so into server:
 
  my mod_jk.conf file is very small and very simple and easy:
 
  LoadModule jk_module modules/mod_jk.so
  IfModule mod_jk.c
  JkWorkersFile /jboss/catalina/conf/jk/workers.properties
  JkLogFile  logs/jk.log
  JkLogLevel warn
  JkMount /*.jsp ajp12
  JkMount /servlet/* ajp12
  JkMount /examples/* ajp12
  /IfModule
 
  police hepl me in above error removing - sory for my engllish

Looks like it can't find your mod_jk.so -- where is it located, do you
have it in the right place?

Milt Epstein
Research Programmer
Integration and Software Engineering (ISE)
Campus Information Technologies and Educational Services (CITES)
University of Illinois at Urbana-Champaign (UIUC)
[EMAIL PROTECTED]


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




_
Send and receive Hotmail on your mobile device: http://mobile.msn.com


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




Re: apache error?

2002-09-11 Thread charbel . achkar



I have seen a similar error before. Did you also have the AddModule line in
addition to the LoadModule? try that.


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




Re: apache error?

2002-09-11 Thread hari hari

my many thank you Charbel.

do u mean that i need to add Addmodule to httpd.conf or mod_jk.conf?

In httpd.conf, I have put following line at the exact end.
Include /jboss/catalina/conf/auto/mod_jk.conf


And, my mod_jk.conf is containing following lines:
LoadModule jk_module modules/mod_jk.so
IfModule mod_jk.c
JkWorkersFile /jboss/catalina/conf/jk/workers.properties
JkLogFile  logs/jk.log
JkLogLevel warn
JkMount /*.jsp ajp12
JkMount /servlet/* ajp12
JkMount /examples/* ajp12
/IfModule

Pl. helping me.

--
hari





From: [EMAIL PROTECTED]
Reply-To: Tomcat Users List [EMAIL PROTECTED]
To: Tomcat Users List [EMAIL PROTECTED]
Subject: Re: apache error?
Date: Wed, 11 Sep 2002 17:32:12 -0400




_
MSN Photos is the easiest way to share and print your photos: 
http://photos.msn.com/support/worldwide.aspx


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




RE: apache error?

2002-09-11 Thread Galbayar

add this to the mod_jk.conf
Directory Alias dir
AllowOverride None
deny from all
/Directory

-Original Message-
From: hari hari [mailto:[EMAIL PROTECTED]]
Sent: Thursday, September 12, 2002 6:46 AM
To: [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Subject: Re: apache error?


my many thank you Charbel.

do u mean that i need to add Addmodule to httpd.conf or mod_jk.conf?

In httpd.conf, I have put following line at the exact end.
Include /jboss/catalina/conf/auto/mod_jk.conf


And, my mod_jk.conf is containing following lines:
LoadModule jk_module modules/mod_jk.so
IfModule mod_jk.c
JkWorkersFile /jboss/catalina/conf/jk/workers.properties
JkLogFile  logs/jk.log
JkLogLevel warn
JkMount /*.jsp ajp12
JkMount /servlet/* ajp12
JkMount /examples/* ajp12
/IfModule

Pl. helping me.

--
hari





From: [EMAIL PROTECTED]
Reply-To: Tomcat Users List [EMAIL PROTECTED]
To: Tomcat Users List [EMAIL PROTECTED]
Subject: Re: apache error?
Date: Wed, 11 Sep 2002 17:32:12 -0400




_
MSN Photos is the easiest way to share and print your photos:
http://photos.msn.com/support/worldwide.aspx


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



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




RE: apache error?

2002-09-11 Thread hari hari

hi Galbayar,

my thanks to you.

i tried to put the following at my mod_jk.conf - but still it not works. It 
is gives me same error.

Directory Alias dir
 AllowOverride None
 deny from all
/Directory

I am geting following error
# ./apachectl start
Syntax error on line 1 of /jboss/catalina/conf/auto/mod_jk.conf:
Cannot load /usr/local/apache2/modules/mod_jk.so into server:
#

I have following file as my mod_jk.conf. I tried all combinations but still 
getting same above error

LoadModule jk_module modules/mod_jk.so
AddModule mod_jk.c
IfModule mod_jk.c
JkWorkersFile /jboss/catalina/conf/jk/workers.properties
JkLogFile  logs/jk.log
JkLogLevel warn
JkMount /*.jsp ajp12
JkMount /servlet/* ajp12
JkMount /examples/* ajp12
/IfModule
Directory Alias dir
AllowOverride None
deny from all
/Directory

thanks to you

hari


From: Galbayar [EMAIL PROTECTED]
Reply-To: Tomcat Users List [EMAIL PROTECTED]
To: Tomcat Users List [EMAIL PROTECTED]
Subject: RE: apache error?
Date: Thu, 12 Sep 2002 09:02:28 +0900

add this to the mod_jk.conf
Directory Alias dir
 AllowOverride None
 deny from all
/Directory

-Original Message-
From: hari hari [mailto:[EMAIL PROTECTED]]
Sent: Thursday, September 12, 2002 6:46 AM
To: [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Subject: Re: apache error?


my many thank you Charbel.

do u mean that i need to add Addmodule to httpd.conf or mod_jk.conf?

In httpd.conf, I have put following line at the exact end.
Include /jboss/catalina/conf/auto/mod_jk.conf


And, my mod_jk.conf is containing following lines:
LoadModule jk_module modules/mod_jk.so
IfModule mod_jk.c
JkWorkersFile /jboss/catalina/conf/jk/workers.properties
JkLogFile  logs/jk.log
JkLogLevel warn
JkMount /*.jsp ajp12
JkMount /servlet/* ajp12
JkMount /examples/* ajp12
/IfModule

Pl. helping me.

--
hari





 From: [EMAIL PROTECTED]



_
Chat with friends online, try MSN Messenger: http://messenger.msn.com


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




RE: apache error?

2002-09-11 Thread Galbayar

Remove AddModule line

-Original Message-
From: hari hari [mailto:[EMAIL PROTECTED]]
Sent: Thursday, September 12, 2002 9:14 AM
To: [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Subject: RE: apache error?


hi Galbayar,

my thanks to you.

i tried to put the following at my mod_jk.conf - but still it not works. It
is gives me same error.

Directory Alias dir
 AllowOverride None
 deny from all
/Directory

I am geting following error
# ./apachectl start
Syntax error on line 1 of /jboss/catalina/conf/auto/mod_jk.conf:
Cannot load /usr/local/apache2/modules/mod_jk.so into server:
#

I have following file as my mod_jk.conf. I tried all combinations but still
getting same above error

LoadModule jk_module modules/mod_jk.so
AddModule mod_jk.c
IfModule mod_jk.c
JkWorkersFile /jboss/catalina/conf/jk/workers.properties
JkLogFile  logs/jk.log
JkLogLevel warn
JkMount /*.jsp ajp12
JkMount /servlet/* ajp12
JkMount /examples/* ajp12
/IfModule
Directory Alias dir
AllowOverride None
deny from all
/Directory

thanks to you

hari


From: Galbayar [EMAIL PROTECTED]
Reply-To: Tomcat Users List [EMAIL PROTECTED]
To: Tomcat Users List [EMAIL PROTECTED]
Subject: RE: apache error?
Date: Thu, 12 Sep 2002 09:02:28 +0900

add this to the mod_jk.conf
Directory Alias dir
 AllowOverride None
 deny from all
/Directory

-Original Message-
From: hari hari [mailto:[EMAIL PROTECTED]]
Sent: Thursday, September 12, 2002 6:46 AM
To: [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Subject: Re: apache error?


my many thank you Charbel.

do u mean that i need to add Addmodule to httpd.conf or mod_jk.conf?

In httpd.conf, I have put following line at the exact end.
Include /jboss/catalina/conf/auto/mod_jk.conf


And, my mod_jk.conf is containing following lines:
LoadModule jk_module modules/mod_jk.so
IfModule mod_jk.c
JkWorkersFile /jboss/catalina/conf/jk/workers.properties
JkLogFile  logs/jk.log
JkLogLevel warn
JkMount /*.jsp ajp12
JkMount /servlet/* ajp12
JkMount /examples/* ajp12
/IfModule

Pl. helping me.

--
hari





 From: [EMAIL PROTECTED]



_
Chat with friends online, try MSN Messenger: http://messenger.msn.com


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



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




RE: apache error?

2002-09-11 Thread hari hari

hi friend Galbayar,

my many thanks again.

I removed completely Addmodule line but it showing same error - Syntax 
error on line 1 of /jboss/catalina/conf/auto/mod_jk.conf:
Cannot load /usr/local/apache2/modules/mod_jk.so into server:

Pl help.

--hari



From: Galbayar [EMAIL PROTECTED]
Reply-To: Tomcat Users List [EMAIL PROTECTED]
To: Tomcat Users List [EMAIL PROTECTED]
Subject: RE: apache error?
Date: Thu, 12 Sep 2002 09:37:16 +0900

Remove AddModule line

-Original Message-
From: hari hari [mailto:[EMAIL PROTECTED]]
Sent: Thursday, September 12, 2002 9:14 AM
To: [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Subject: RE: apache error?


hi Galbayar,

my thanks to you.

i tried to put the following at my mod_jk.conf - but still it not works. It
is gives me same error.

Directory Alias dir
  AllowOverride None
  deny from all
/Directory

I am geting following error
# ./apachectl start
Syntax error on line 1 of /jboss/catalina/conf/auto/mod_jk.conf:
Cannot load /usr/local/apache2/modules/mod_jk.so into server:
#

I have following file as my mod_jk.conf. I tried all combinations but still
getting same above error

LoadModule jk_module modules/mod_jk.so
AddModule mod_jk.c
IfModule mod_jk.c
JkWorkersFile /jboss/catalina/conf/jk/workers.properties
JkLogFile  logs/jk.log
JkLogLevel warn
JkMount /*.jsp ajp12
JkMount /servlet/* ajp12
JkMount /examples/* ajp12
/IfModule
Directory Alias dir
 AllowOverride None
 deny from all
/Directory

thanks to you

hari


 From: Galbayar [EMAIL PROTECTED]
 Reply-To: Tomcat Users List [EMAIL PROTECTED]
 To: Tomcat Users List [EMAIL PROTECTED]
 Subject: RE: apache error?
 Date: Thu, 12 Sep 2002 09:02:28 +0900
 
 add this to the mod_jk.conf
 Directory Alias dir
  AllowOverride None
  deny from all
 /Directory
 
 -Original Message-
 From: hari hari [mailto:[EMAIL PROTECTED]]
 Sent: Thursday, September 12, 2002 6:46 AM
 To: [EMAIL PROTECTED]
 Cc: [EMAIL PROTECTED]
 Subject: Re: apache error?
 
 
 my many thank you Charbel.
 
 do u mean that i need to add Addmodule to httpd.conf or mod_jk.conf?
 
 In httpd.conf, I have put following line at the exact end.
 Include /jboss/catalina/conf/auto/mod_jk.conf
 
 
 And, my mod_jk.conf is containing following lines:
 LoadModule jk_module modules/mod_jk.so
 IfModule mod_jk.c
 JkWorkersFile /jboss/catalina/conf/jk/workers.properties
 JkLogFile  logs/jk.log
 JkLogLevel warn
 JkMount /*.jsp ajp12
 JkMount /servlet/* ajp12
 JkMount /examples/* ajp12
 /IfModule
 
 Pl. helping me.
 
 --
 hari
 
 
 
 
 
  From: [EMAIL PROTECTED]



_
Chat with friends online, try MSN Messenger: http://messenger.msn.com


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



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




_
MSN Photos is the easiest way to share and print your photos: 
http://photos.msn.com/support/worldwide.aspx


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




RE: apache error?

2002-09-11 Thread Galbayar

copy mod_jk.so to apache/libexec dir

my server httpd.conf is

LoadModulejk_module  libexec/mod_jk.so
AddModule mod_jk.c
JkWorkersFile /usr/local/jakarta-tomcat-4.0.3/conf/workers.properties
JkLogFile /var/log/apache/mod_jk.log
JkLogLevelinfo
JkLogStampFormat [%a %b %d %H:%M:%S %Y] 

Alias /administrator/
/usr/local/jakarta-tomcat-4.0.3/webapps/administrator

Directory /usr/local/jakarta-tomcat-4.0.3/webapps/administrator
AuthName Admin
AuthType Basic
AuthUserFile /usr/local/apache/bin/usr.pwd
Require valid-user
AllowOverride None
Options None
DirectoryIndex index.jsp
/Directory
JkMount /administrator/* ajp13
JkMount /administrator/servlet/* ajp13


-Original Message-
From: hari hari [mailto:[EMAIL PROTECTED]]
Sent: Thursday, September 12, 2002 9:14 AM
To: [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Subject: RE: apache error?


hi Galbayar,

my thanks to you.

i tried to put the following at my mod_jk.conf - but still it not works. It
is gives me same error.

Directory Alias dir
 AllowOverride None
 deny from all
/Directory

I am geting following error
# ./apachectl start
Syntax error on line 1 of /jboss/catalina/conf/auto/mod_jk.conf:
Cannot load /usr/local/apache2/modules/mod_jk.so into server:
#

I have following file as my mod_jk.conf. I tried all combinations but still
getting same above error

LoadModule jk_module modules/mod_jk.so
AddModule mod_jk.c
IfModule mod_jk.c
JkWorkersFile /jboss/catalina/conf/jk/workers.properties
JkLogFile  logs/jk.log
JkLogLevel warn
JkMount /*.jsp ajp12
JkMount /servlet/* ajp12
JkMount /examples/* ajp12
/IfModule
Directory Alias dir
AllowOverride None
deny from all
/Directory

thanks to you

hari


From: Galbayar [EMAIL PROTECTED]
Reply-To: Tomcat Users List [EMAIL PROTECTED]
To: Tomcat Users List [EMAIL PROTECTED]
Subject: RE: apache error?
Date: Thu, 12 Sep 2002 09:02:28 +0900

add this to the mod_jk.conf
Directory Alias dir
 AllowOverride None
 deny from all
/Directory

-Original Message-
From: hari hari [mailto:[EMAIL PROTECTED]]
Sent: Thursday, September 12, 2002 6:46 AM
To: [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Subject: Re: apache error?


my many thank you Charbel.

do u mean that i need to add Addmodule to httpd.conf or mod_jk.conf?

In httpd.conf, I have put following line at the exact end.
Include /jboss/catalina/conf/auto/mod_jk.conf


And, my mod_jk.conf is containing following lines:
LoadModule jk_module modules/mod_jk.so
IfModule mod_jk.c
JkWorkersFile /jboss/catalina/conf/jk/workers.properties
JkLogFile  logs/jk.log
JkLogLevel warn
JkMount /*.jsp ajp12
JkMount /servlet/* ajp12
JkMount /examples/* ajp12
/IfModule

Pl. helping me.

--
hari





 From: [EMAIL PROTECTED]



_
Chat with friends online, try MSN Messenger: http://messenger.msn.com


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



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




RE: apache error?

2002-09-11 Thread hari hari

thanks Galbayar,

apache 2 does NOT have libexec directory - but has modules directory 
instead.

pl. helping me

--hari



From: Galbayar [EMAIL PROTECTED]
Reply-To: Tomcat Users List [EMAIL PROTECTED]
To: Tomcat Users List [EMAIL PROTECTED]
Subject: RE: apache error?
Date: Thu, 12 Sep 2002 09:45:32 +0900

copy mod_jk.so to apache/libexec dir

my server httpd.conf is

LoadModulejk_module  libexec/mod_jk.so
AddModule mod_jk.c
JkWorkersFile /usr/local/jakarta-tomcat-4.0.3/conf/workers.properties
JkLogFile /var/log/apache/mod_jk.log
JkLogLevelinfo
JkLogStampFormat [%a %b %d %H:%M:%S %Y] 

Alias /administrator/
/usr/local/jakarta-tomcat-4.0.3/webapps/administrator

 Directory /usr/local/jakarta-tomcat-4.0.3/webapps/administrator
 AuthName Admin
 AuthType Basic
 AuthUserFile /usr/local/apache/bin/usr.pwd
 Require valid-user
 AllowOverride None
 Options None
 DirectoryIndex index.jsp
 /Directory
JkMount /administrator/* ajp13
JkMount /administrator/servlet/* ajp13


-Original Message-
From: hari hari [mailto:[EMAIL PROTECTED]]
Sent: Thursday, September 12, 2002 9:14 AM
To: [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Subject: RE: apache error?


hi Galbayar,

my thanks to you.

i tried to put the following at my mod_jk.conf - but still it not works. It
is gives me same error.

Directory Alias dir
  AllowOverride None
  deny from all
/Directory

I am geting following error
# ./apachectl start
Syntax error on line 1 of /jboss/catalina/conf/auto/mod_jk.conf:
Cannot load /usr/local/apache2/modules/mod_jk.so into server:
#

I have following file as my mod_jk.conf. I tried all combinations but still
getting same above error

LoadModule jk_module modules/mod_jk.so
AddModule mod_jk.c
IfModule mod_jk.c
JkWorkersFile /jboss/catalina/conf/jk/workers.properties
JkLogFile  logs/jk.log
JkLogLevel warn
JkMount /*.jsp ajp12
JkMount /servlet/* ajp12
JkMount /examples/* ajp12
/IfModule
Directory Alias dir
 AllowOverride None
 deny from all
/Directory

thanks to you

hari


 From: Galbayar [EMAIL PROTECTED]
 Reply-To: Tomcat Users List [EMAIL PROTECTED]
 To: Tomcat Users List [EMAIL PROTECTED]
 Subject: RE: apache error?
 Date: Thu, 12 Sep 2002 09:02:28 +0900
 
 add this to the mod_jk.conf
 Directory Alias dir
  AllowOverride None
  deny from all
 /Directory
 
 -Original Message-
 From: hari hari [mailto:[EMAIL PROTECTED]]
 Sent: Thursday, September 12, 2002 6:46 AM
 To: [EMAIL PROTECTED]
 Cc: [EMAIL PROTECTED]
 Subject: Re: apache error?
 
 
 my many thank you Charbel.
 
 do u mean that i need to add Addmodule to httpd.conf or mod_jk.conf?
 
 In httpd.conf, I have put following line at the exact end.
 Include /jboss/catalina/conf/auto/mod_jk.conf
 
 
 And, my mod_jk.conf is containing following lines:
 LoadModule jk_module modules/mod_jk.so
 IfModule mod_jk.c
 JkWorkersFile /jboss/catalina/conf/jk/workers.properties
 JkLogFile  logs/jk.log
 JkLogLevel warn
 JkMount /*.jsp ajp12
 JkMount /servlet/* ajp12
 JkMount /examples/* ajp12
 /IfModule
 
 Pl. helping me.
 
 --
 hari
 
 
 
 
 
  From: [EMAIL PROTECTED]



_
Chat with friends online, try MSN Messenger: http://messenger.msn.com


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



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




_
Join the world’s largest e-mail service with MSN Hotmail. 
http://www.hotmail.com


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




RE: apache error?

2002-09-11 Thread Vikramjit Singh

 -Original Message-
 From: hari hari [mailto:[EMAIL PROTECTED]]
 Sent: Wednesday, September 11, 2002 12:55 PM
 To: [EMAIL PROTECTED]
 Subject: apache error?
 
 
 
 Hi,
 
 i running apache 2.0.40 and run tomcat 4.0.4 and getting 
 mod_jk.so file and 
 put that file in /usr/local/apache2/modules and when run 
 following, i get 
 bugs:

You didnt tell on which platform are you integrating apache and tc i.e. in
windows or Linux.
If in windows you have to use mod_jk2.dll which you can download from 

http://jakarta.apache.org/builds/jakarta-tomcat-connectors/jk2/nightly/win32
/

Check out this link. The contents written in it worked for me. 

ftp://pokey.wr.usgs.gov/pub/rsowders/Apache2_Win2k_TC4.1.10_JSDK1.4.zip

 
 # ./apachectl configtest
 Syntax error on line 1 of /jboss/catalina/conf/auto/mod_jk.conf:
 Cannot load /usr/local/apache2/modules/mod_jk.so into server:
 
 my mod_jk.conf file is very small and very simple and easy:
 
 LoadModule jk_module modules/mod_jk.so
 IfModule mod_jk.c
 JkWorkersFile /jboss/catalina/conf/jk/workers.properties
 JkLogFile  logs/jk.log
 JkLogLevel warn
 JkMount /*.jsp ajp12
 JkMount /servlet/* ajp12
 JkMount /examples/* ajp12
 /IfModule
 
 
 police hepl me in above error removing - sory for my engllish
 
 hari
 
 
 
 _
 Chat with friends online, try MSN Messenger: http://messenger.msn.com
 
 
 --
 To unsubscribe, e-mail:   
 mailto:[EMAIL PROTECTED]
 For additional commands, e-mail: 
 mailto:[EMAIL PROTECTED]
 

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