Re: Looking for mod_jk2

2003-11-13 Thread Chong Yu Meng
I'm using the Falsehope RPMs for Apache 2, not Red Hat's. That could be 
the reason why it compiles cleanly on my system and not on others.

Regards,
pascal chong
Mark Eggers wrote:

Dave,

The linker is looking for libapr-0.so.  I don't know
what you used in your ./configure run.
On some installations the link between the current
version of libapr and libapr-0.so (and libapr-0.so.0)
does not get made when Apache is installed.  This
appears to be mostly a problem with the RedHat RPM
distribution.
You may find that to be true also with libaprutil.

To solve those problems, do the following.

1. cd to the Apache lib directory
2. soft link the current libs to the base names
3. cd back to the source directory
4. rerun configure (to make sure)
5. run make
For example:

(1) cd /home/apache/lib
(2) ln -s libapr-0.so.0.9.4 libapr-0.so
   ln -s libapr-0.so.0.9.4 libapr-0.so.0
   ln -s libaprutil-so.0.9.4 libaprutil-so
   ln -s libaprutil-so.0.9.4 libaprutil-so.0
(3) cd /src/jakarta-tomcat-connectors/jk/native2
(4) ./configure
(5) make
Note that you will not need jkjni.so unless you
attempt to run either UNIX sockets or in-process
communication.  IP sockets work fine without the
library.
The last time I tried UNIX sockets or in-process
communication on RedHat Linux 9 I was unsuccessful. 
There are some linking problems that I think have more
to do with the way Redhat lays out their system via
RPMs than the code.

I recently checked out the latest versions of the
connectors, apr, and apr-util from cvs.apache.org.  I
may try UNIX sockets and in-process communication
again.  However, since this is a development machine,
I  am fine with the IP socket connection.
HTH.

/mde/
just my two cents . . . .
__
Do you Yahoo!?
Protect your identity with Yahoo! Mail AddressGuard
http://antispam.yahoo.com/whatsnewfree
-
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: Looking for mod_jk2

2003-11-13 Thread Dennis McRitchie
Ah, I had not noticed the versions of those files in the apache lib dir
because we built our own from sources and did not install from an rpm
package on that machine. But thanks for pointing that out as it may help
explain another problem I was having: when I built apache2 from sources on a
machine that had the httpd-devel, subversion, and subversion-devel packages
installed (which collectively provide a number /usr/lib/libapr*.so* files),
and then created a binary rpm from that, the binary rpm - once installed -
would not run on another machine that did not have /usr/lib/libapr*.so*
files available. Perhaps "configure" found those APR libraries at build
time, and chose to use them over its own internal copies.

Whereas if I built apache2 and created a binary rpm on a machine without any
/usr/lib/libapr*.so* files, that binary rpm was portable to other RedHat 9
systems, perhaps because it relied on its own internal copies of these
files. I'll investigate further. Thanks for the hint.

Dennis

Dennis McRitchie
Research & Academic Applications Support (RAAS)
Academic Services Department
Office of Information Technology
Princeton University

> -Original Message-
> From: Mark Eggers [mailto:[EMAIL PROTECTED]
> Sent: Thursday, November 13, 2003 1:00 PM
> To: Tomcat Users List
> Subject: RE: Looking for mod_jk2
>
>
> Dave,
>
> The linker is looking for libapr-0.so.  I don't know
> what you used in your ./configure run.
>
> On some installations the link between the current
> version of libapr and libapr-0.so (and libapr-0.so.0)
> does not get made when Apache is installed.  This
> appears to be mostly a problem with the RedHat RPM
> distribution.
>
> You may find that to be true also with libaprutil.
>
> To solve those problems, do the following.
>
> 1. cd to the Apache lib directory
> 2. soft link the current libs to the base names
> 3. cd back to the source directory
> 4. rerun configure (to make sure)
> 5. run make
>
> For example:
>
> (1) cd /home/apache/lib
> (2) ln -s libapr-0.so.0.9.4 libapr-0.so
> ln -s libapr-0.so.0.9.4 libapr-0.so.0
> ln -s libaprutil-so.0.9.4 libaprutil-so
> ln -s libaprutil-so.0.9.4 libaprutil-so.0
> (3) cd /src/jakarta-tomcat-connectors/jk/native2
> (4) ./configure
> (5) make
>
> Note that you will not need jkjni.so unless you
> attempt to run either UNIX sockets or in-process
> communication.  IP sockets work fine without the
> library.
>
> The last time I tried UNIX sockets or in-process
> communication on RedHat Linux 9 I was unsuccessful.
> There are some linking problems that I think have more
> to do with the way Redhat lays out their system via
> RPMs than the code.
>
> I recently checked out the latest versions of the
> connectors, apr, and apr-util from cvs.apache.org.  I
> may try UNIX sockets and in-process communication
> again.  However, since this is a development machine,
> I  am fine with the IP socket connection.
>
> HTH.
>
> /mde/
> just my two cents . . . .
>
> __
> Do you Yahoo!?
> Protect your identity with Yahoo! Mail AddressGuard
> http://antispam.yahoo.com/whatsnewfree
>
> -
> 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: Looking for mod_jk2

2003-11-13 Thread Dave Morrow
I actually got it to compile by ;

ln -s /usr/lib/libapr-0.so /usr/lib/libapr.so

Now I have, in /usr/lib/httpd/modules both mod_jk2.so and jkjni.so


Now to making Apache talk to Tomcat!


David Morrow
Systems Technical Lead, IT Operations
P: (519) 951-6079
F: (519) 451-6615
mailto: [EMAIL PROTECTED]
 
..poor planning on your part does not make an emergency on my
part

 This message has originated from Autodata Solutions.  The attached material
is the Confidential and Proprietary Information of Autodata Solutions. This
email and any files transmitted with it are confidential and intended solely
for the use of the individual or entity to whom they are addressed. If you
have received this email in error please delete this message and notify the
Autodata system administrator at  [EMAIL PROTECTED]
<mailto:[EMAIL PROTECTED]>




-Original Message-
From: Dennis McRitchie [mailto:[EMAIL PROTECTED] 
Sent: Thursday, November 13, 2003 12:56 PM
To: Tomcat Users List
Subject: RE: Looking for mod_jk2


On my RedHat 9 system, this library (/usr/lib/libapr-0.a) is provided by the
subversion-devel package, which I'm guessing you don't have installed on
your system. This package also contains /usr/lib/libaprutil-0.a

> rpm -q --whatprovides /usr/lib/libapr-0.a
subversion-devel-0.17.1-4503.0

This seems like a weird requirement to build jkjni.so since Subversion is a
CVS-like version control system package and subversion-devel is for
developers interacting with the subversion package.

Note BTW that /usr/lib/libapr.so and libaprutil.so are provided by
http-devel instead.

Dennis

Dennis McRitchie
Research & Academic Applications Support (RAAS)
Academic Services Department
Office of Information Technology
Princeton University

> -Original Message-
> From: Dave Morrow [mailto:[EMAIL PROTECTED]
> Sent: Thursday, November 13, 2003 11:45 AM
> To: 'Tomcat Users List'
> Subject: RE: Looking for mod_jk2
>
>
> ib -lcrypt -lapr-0  -Wl,-soname -Wl,jkjni.so -o 
> ../../../build/jk2/apache2/.libs/jkjni.so
> /usr/bin/ld: cannot find -lapr-0
> collect2: ld returned 1 exit status
> make[1]: *** [../../../build/jk2/apache2/jkjni.la] Error 1
> make[1]: Leaving directory 
> `/root/jakarta-tomcat-connectors-jk2-2.0.2-src/jk/native2/server/apach
> e2'
>
> David Morrow
> Systems Technical Lead, IT Operations
> P: (519) 951-6079
> F: (519) 451-6615
> mailto: [EMAIL PROTECTED]
>
> ..poor planning on your part does not make an emergency on my 
> part
>
>  This message has originated from Autodata Solutions.  The attached 
> material is the Confidential and Proprietary Information of Autodata
> Solutions. This
> email and any files transmitted with it are confidential and
> intended solely
> for the use of the individual or entity to whom they are addressed. If you
> have received this email in error please delete this message and
> notify the
> Autodata system administrator at  [EMAIL PROTECTED]
> <mailto:[EMAIL PROTECTED]>
>
>
>
>
> -----Original Message-
> From: Dave Morrow [mailto:[EMAIL PROTECTED]
> Sent: Thursday, November 13, 2003 11:39 AM
> To: 'Tomcat Users List'
> Subject: RE: Looking for mod_jk2
>
>
> Thanks for the tip.  I have been through your procedure, and cannot 
> get it to compile.
>
>
>
> David Morrow
> Systems Technical Lead, IT Operations
> P: (519) 951-6079
> F: (519) 451-6615
> mailto: [EMAIL PROTECTED]
>
> ..poor planning on your part does not make an emergency on my 
> part
>
>  This message has originated from Autodata Solutions.  The attached 
> material is the Confidential and Proprietary Information of Autodata
> Solutions. This
> email and any files transmitted with it are confidential and
> intended solely
> for the use of the individual or entity to whom they are addressed. If you
> have received this email in error please delete this message and
> notify the
> Autodata system administrator at  [EMAIL PROTECTED]
> <mailto:[EMAIL PROTECTED]>
>
>
>
>
> -Original Message-
> From: Chong Yu Meng [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, November 12, 2003 8:54 PM
> To: Tomcat Users List
> Subject: Re: Looking for mod_jk2
>
>
> Hi Dave,
>
> The compile is not really so difficult. I've written a section on this 
> on my website : http://cymulacrum.net/tomcat/jk2_compile.html.
>
> Regards,
> pascal chong
>
>
> Dave Morrow wrote:
>
> >Hi, I was just on jakarta.apache.org and cannot find a Redhat 9 / 
> >Apache 2 RPM binary. Anyone know where I can get one.  I really do 
> >not want to have to compile etc (requires ant and the likes which I 
> >am not familiar with).
> >
> >David Morrow

RE: Looking for mod_jk2

2003-11-13 Thread Mark Eggers
Dave,

The linker is looking for libapr-0.so.  I don't know
what you used in your ./configure run.

On some installations the link between the current
version of libapr and libapr-0.so (and libapr-0.so.0)
does not get made when Apache is installed.  This
appears to be mostly a problem with the RedHat RPM
distribution.

You may find that to be true also with libaprutil.

To solve those problems, do the following.

1. cd to the Apache lib directory
2. soft link the current libs to the base names
3. cd back to the source directory
4. rerun configure (to make sure)
5. run make

For example:

(1) cd /home/apache/lib
(2) ln -s libapr-0.so.0.9.4 libapr-0.so
ln -s libapr-0.so.0.9.4 libapr-0.so.0
ln -s libaprutil-so.0.9.4 libaprutil-so
ln -s libaprutil-so.0.9.4 libaprutil-so.0
(3) cd /src/jakarta-tomcat-connectors/jk/native2
(4) ./configure
(5) make

Note that you will not need jkjni.so unless you
attempt to run either UNIX sockets or in-process
communication.  IP sockets work fine without the
library.

The last time I tried UNIX sockets or in-process
communication on RedHat Linux 9 I was unsuccessful. 
There are some linking problems that I think have more
to do with the way Redhat lays out their system via
RPMs than the code.

I recently checked out the latest versions of the
connectors, apr, and apr-util from cvs.apache.org.  I
may try UNIX sockets and in-process communication
again.  However, since this is a development machine,
I  am fine with the IP socket connection.

HTH.

/mde/
just my two cents . . . .

__
Do you Yahoo!?
Protect your identity with Yahoo! Mail AddressGuard
http://antispam.yahoo.com/whatsnewfree

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



RE: Looking for mod_jk2

2003-11-13 Thread Dennis McRitchie
On my RedHat 9 system, this library (/usr/lib/libapr-0.a) is provided by the
subversion-devel package, which I'm guessing you don't have installed on
your system. This package also contains /usr/lib/libaprutil-0.a

> rpm -q --whatprovides /usr/lib/libapr-0.a
subversion-devel-0.17.1-4503.0

This seems like a weird requirement to build jkjni.so since Subversion is a
CVS-like version control system package and subversion-devel is for
developers interacting with the subversion package.

Note BTW that /usr/lib/libapr.so and libaprutil.so are provided by
http-devel instead.

Dennis

Dennis McRitchie
Research & Academic Applications Support (RAAS)
Academic Services Department
Office of Information Technology
Princeton University

> -Original Message-
> From: Dave Morrow [mailto:[EMAIL PROTECTED]
> Sent: Thursday, November 13, 2003 11:45 AM
> To: 'Tomcat Users List'
> Subject: RE: Looking for mod_jk2
>
>
> ib -lcrypt -lapr-0  -Wl,-soname -Wl,jkjni.so -o
> ../../../build/jk2/apache2/.libs/jkjni.so
> /usr/bin/ld: cannot find -lapr-0
> collect2: ld returned 1 exit status
> make[1]: *** [../../../build/jk2/apache2/jkjni.la] Error 1
> make[1]: Leaving directory
> `/root/jakarta-tomcat-connectors-jk2-2.0.2-src/jk/native2/server/apache2'
>
> David Morrow
> Systems Technical Lead, IT Operations
> P: (519) 951-6079
> F: (519) 451-6615
> mailto: [EMAIL PROTECTED]
>
> ..poor planning on your part does not make an emergency on my
> part
>
>  This message has originated from Autodata Solutions.  The
> attached material
> is the Confidential and Proprietary Information of Autodata
> Solutions. This
> email and any files transmitted with it are confidential and
> intended solely
> for the use of the individual or entity to whom they are addressed. If you
> have received this email in error please delete this message and
> notify the
> Autodata system administrator at  [EMAIL PROTECTED]
> <mailto:[EMAIL PROTECTED]>
>
>
>
>
> -Original Message-
> From: Dave Morrow [mailto:[EMAIL PROTECTED]
> Sent: Thursday, November 13, 2003 11:39 AM
> To: 'Tomcat Users List'
> Subject: RE: Looking for mod_jk2
>
>
> Thanks for the tip.  I have been through your procedure, and cannot get it
> to compile.
>
>
>
> David Morrow
> Systems Technical Lead, IT Operations
> P: (519) 951-6079
> F: (519) 451-6615
> mailto: [EMAIL PROTECTED]
>
> ..poor planning on your part does not make an emergency on my
> part
>
>  This message has originated from Autodata Solutions.  The
> attached material
> is the Confidential and Proprietary Information of Autodata
> Solutions. This
> email and any files transmitted with it are confidential and
> intended solely
> for the use of the individual or entity to whom they are addressed. If you
> have received this email in error please delete this message and
> notify the
> Autodata system administrator at  [EMAIL PROTECTED]
> <mailto:[EMAIL PROTECTED]>
>
>
>
>
> -Original Message-
> From: Chong Yu Meng [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, November 12, 2003 8:54 PM
> To: Tomcat Users List
> Subject: Re: Looking for mod_jk2
>
>
> Hi Dave,
>
> The compile is not really so difficult. I've written a section on this
> on my website : http://cymulacrum.net/tomcat/jk2_compile.html.
>
> Regards,
> pascal chong
>
>
> Dave Morrow wrote:
>
> >Hi, I was just on jakarta.apache.org and cannot find a Redhat 9 /
> >Apache 2 RPM binary. Anyone know where I can get one.  I really do not
> >want to have to compile etc (requires ant and the likes which I am not
> >familiar with).
> >
> >David Morrow
> >Systems Technical Lead, IT Operations
> >P: (519) 951-6079
> >F: (519) 451-6615
> >mailto: [EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>
> >
> >..poor planning on your part does not make an emergency on my
> >part
> >
> > This message has originated from Autodata Solutions.  The attached
> >material is the Confidential and Proprietary Information of Autodata
> >Solutions. This email and any files transmitted with it are
> >confidential and intended solely for the use of the individual or
> >entity to whom they are addressed. If you have received this email in
> >error please delete this message and notify the Autodata system
> >administrator at  [EMAIL PROTECTED]
> ><mailto:[EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>
> >>
> >
> >
> >
> >
> >-
> >To unsubscribe, e-mail: [EMAIL PROTECTED]
>

RE: Looking for mod_jk2

2003-11-13 Thread Stuart Stephen
Oh yes... read it incorrectly! Sorry!

-Original Message-
From: Dave Morrow [mailto:[EMAIL PROTECTED]
Sent: 13 November 2003 17:17
To: 'Tomcat Users List'
Subject: RE: Looking for mod_jk2


Well, I managed to build mod_jk2.so but not the jkjni.so library.

David Morrow
Systems Technical Lead, IT Operations
P: (519) 951-6079
F: (519) 451-6615
mailto: [EMAIL PROTECTED]

..poor planning on your part does not make an emergency on my
part

 This message has originated from Autodata Solutions.  The attached material
is the Confidential and Proprietary Information of Autodata Solutions. This
email and any files transmitted with it are confidential and intended solely
for the use of the individual or entity to whom they are addressed. If you
have received this email in error please delete this message and notify the
Autodata system administrator at  [EMAIL PROTECTED]
<mailto:[EMAIL PROTECTED]>




-Original Message-
From: Stuart Stephen [mailto:[EMAIL PROTECTED]
Sent: Thursday, November 13, 2003 12:03 PM
To: Tomcat Users List
Subject: RE: Looking for mod_jk2


Are you on RedHat 9?

I had the same problem, I couldn't build mod_jk2.so on that. It seems to be
an issue with RedHat 9.0?!? Why, i'm not sure.

-Original Message-
From: Dave Morrow [mailto:[EMAIL PROTECTED]
Sent: 13 November 2003 16:59
To: Dave Morrow; 'Tomcat Users List'
Subject: RE: Looking for mod_jk2


It appears that my build is building mod_jk2.so but not jkjni.so Anyone
willing to assist?

David Morrow
Systems Technical Lead, IT Operations
P: (519) 951-6079
F: (519) 451-6615
mailto: [EMAIL PROTECTED]

..poor planning on your part does not make an emergency on my
part

 This message has originated from Autodata Solutions.  The attached material
is the Confidential and Proprietary Information of Autodata Solutions. This
email and any files transmitted with it are confidential and intended solely
for the use of the individual or entity to whom they are addressed. If you
have received this email in error please delete this message and notify the
Autodata system administrator at  [EMAIL PROTECTED]
<mailto:[EMAIL PROTECTED]>




-Original Message-
From: Dave Morrow
Sent: Thursday, November 13, 2003 11:45 AM
To: 'Tomcat Users List'
Subject: RE: Looking for mod_jk2


ib -lcrypt -lapr-0  -Wl,-soname -Wl,jkjni.so -o
../../../build/jk2/apache2/.libs/jkjni.so
/usr/bin/ld: cannot find -lapr-0
collect2: ld returned 1 exit status
make[1]: *** [../../../build/jk2/apache2/jkjni.la] Error 1
make[1]: Leaving directory
`/root/jakarta-tomcat-connectors-jk2-2.0.2-src/jk/native2/server/apache2'

David Morrow
Systems Technical Lead, IT Operations
P: (519) 951-6079
F: (519) 451-6615
mailto: [EMAIL PROTECTED]

..poor planning on your part does not make an emergency on my
part

 This message has originated from Autodata Solutions.  The attached material
is the Confidential and Proprietary Information of Autodata Solutions. This
email and any files transmitted with it are confidential and intended solely
for the use of the individual or entity to whom they are addressed. If you
have received this email in error please delete this message and notify the
Autodata system administrator at  [EMAIL PROTECTED]
<mailto:[EMAIL PROTECTED]>




-Original Message-
From: Dave Morrow [mailto:[EMAIL PROTECTED]
Sent: Thursday, November 13, 2003 11:39 AM
To: 'Tomcat Users List'
Subject: RE: Looking for mod_jk2


Thanks for the tip.  I have been through your procedure, and cannot get it
to compile.



David Morrow
Systems Technical Lead, IT Operations
P: (519) 951-6079
F: (519) 451-6615
mailto: [EMAIL PROTECTED]

..poor planning on your part does not make an emergency on my
part

 This message has originated from Autodata Solutions.  The attached material
is the Confidential and Proprietary Information of Autodata Solutions. This
email and any files transmitted with it are confidential and intended solely
for the use of the individual or entity to whom they are addressed. If you
have received this email in error please delete this message and notify the
Autodata system administrator at  [EMAIL PROTECTED]
<mailto:[EMAIL PROTECTED]>




-Original Message-
From: Chong Yu Meng [mailto:[EMAIL PROTECTED]
Sent: Wednesday, November 12, 2003 8:54 PM
To: Tomcat Users List
Subject: Re: Looking for mod_jk2


Hi Dave,

The compile is not really so difficult. I've written a section on this on my
website : http://cymulacrum.net/tomcat/jk2_compile.html.

Regards,
pascal chong


Dave Morrow wrote:

>Hi, I was just on jakarta.apache.org and cannot find a Redhat 9 /
>Apache 2 RPM binary. Anyone know where I can get one.  I really do not
>want to have to compile etc (requires ant and the likes which I am not
>familiar with).
>
>David Morrow
>Systems Technical Lead, IT Operations
>P: (519) 951-6079
>F: (519) 4

RE: Looking for mod_jk2

2003-11-13 Thread Dave Morrow
Well, I managed to build mod_jk2.so but not the jkjni.so library.

David Morrow
Systems Technical Lead, IT Operations
P: (519) 951-6079
F: (519) 451-6615
mailto: [EMAIL PROTECTED]
 
..poor planning on your part does not make an emergency on my
part

 This message has originated from Autodata Solutions.  The attached material
is the Confidential and Proprietary Information of Autodata Solutions. This
email and any files transmitted with it are confidential and intended solely
for the use of the individual or entity to whom they are addressed. If you
have received this email in error please delete this message and notify the
Autodata system administrator at  [EMAIL PROTECTED]
<mailto:[EMAIL PROTECTED]>




-Original Message-
From: Stuart Stephen [mailto:[EMAIL PROTECTED] 
Sent: Thursday, November 13, 2003 12:03 PM
To: Tomcat Users List
Subject: RE: Looking for mod_jk2


Are you on RedHat 9?

I had the same problem, I couldn't build mod_jk2.so on that. It seems to be
an issue with RedHat 9.0?!? Why, i'm not sure.

-Original Message-
From: Dave Morrow [mailto:[EMAIL PROTECTED]
Sent: 13 November 2003 16:59
To: Dave Morrow; 'Tomcat Users List'
Subject: RE: Looking for mod_jk2


It appears that my build is building mod_jk2.so but not jkjni.so Anyone
willing to assist?

David Morrow
Systems Technical Lead, IT Operations
P: (519) 951-6079
F: (519) 451-6615
mailto: [EMAIL PROTECTED]

..poor planning on your part does not make an emergency on my
part

 This message has originated from Autodata Solutions.  The attached material
is the Confidential and Proprietary Information of Autodata Solutions. This
email and any files transmitted with it are confidential and intended solely
for the use of the individual or entity to whom they are addressed. If you
have received this email in error please delete this message and notify the
Autodata system administrator at  [EMAIL PROTECTED]
<mailto:[EMAIL PROTECTED]>




-Original Message-
From: Dave Morrow
Sent: Thursday, November 13, 2003 11:45 AM
To: 'Tomcat Users List'
Subject: RE: Looking for mod_jk2


ib -lcrypt -lapr-0  -Wl,-soname -Wl,jkjni.so -o
../../../build/jk2/apache2/.libs/jkjni.so
/usr/bin/ld: cannot find -lapr-0
collect2: ld returned 1 exit status
make[1]: *** [../../../build/jk2/apache2/jkjni.la] Error 1
make[1]: Leaving directory
`/root/jakarta-tomcat-connectors-jk2-2.0.2-src/jk/native2/server/apache2'

David Morrow
Systems Technical Lead, IT Operations
P: (519) 951-6079
F: (519) 451-6615
mailto: [EMAIL PROTECTED]

..poor planning on your part does not make an emergency on my
part

 This message has originated from Autodata Solutions.  The attached material
is the Confidential and Proprietary Information of Autodata Solutions. This
email and any files transmitted with it are confidential and intended solely
for the use of the individual or entity to whom they are addressed. If you
have received this email in error please delete this message and notify the
Autodata system administrator at  [EMAIL PROTECTED]
<mailto:[EMAIL PROTECTED]>




-Original Message-
From: Dave Morrow [mailto:[EMAIL PROTECTED]
Sent: Thursday, November 13, 2003 11:39 AM
To: 'Tomcat Users List'
Subject: RE: Looking for mod_jk2


Thanks for the tip.  I have been through your procedure, and cannot get it
to compile.



David Morrow
Systems Technical Lead, IT Operations
P: (519) 951-6079
F: (519) 451-6615
mailto: [EMAIL PROTECTED]

..poor planning on your part does not make an emergency on my
part

 This message has originated from Autodata Solutions.  The attached material
is the Confidential and Proprietary Information of Autodata Solutions. This
email and any files transmitted with it are confidential and intended solely
for the use of the individual or entity to whom they are addressed. If you
have received this email in error please delete this message and notify the
Autodata system administrator at  [EMAIL PROTECTED]
<mailto:[EMAIL PROTECTED]>




-Original Message-
From: Chong Yu Meng [mailto:[EMAIL PROTECTED]
Sent: Wednesday, November 12, 2003 8:54 PM
To: Tomcat Users List
Subject: Re: Looking for mod_jk2


Hi Dave,

The compile is not really so difficult. I've written a section on this on my
website : http://cymulacrum.net/tomcat/jk2_compile.html.

Regards,
pascal chong


Dave Morrow wrote:

>Hi, I was just on jakarta.apache.org and cannot find a Redhat 9 / 
>Apache 2 RPM binary. Anyone know where I can get one.  I really do not 
>want to have to compile etc (requires ant and the likes which I am not 
>familiar with).
>
>David Morrow
>Systems Technical Lead, IT Operations
>P: (519) 951-6079
>F: (519) 451-6615
>mailto: [EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>
>
>..poor planning on your part does not make an emergency on my 
>part
>
> This message has originated fr

RE: Looking for mod_jk2

2003-11-13 Thread Stuart Stephen
Are you on RedHat 9?

I had the same problem, I couldn't build mod_jk2.so on that. It seems to be
an issue with RedHat 9.0?!? Why, i'm not sure.

-Original Message-
From: Dave Morrow [mailto:[EMAIL PROTECTED]
Sent: 13 November 2003 16:59
To: Dave Morrow; 'Tomcat Users List'
Subject: RE: Looking for mod_jk2


It appears that my build is building mod_jk2.so but not jkjni.so
Anyone willing to assist?

David Morrow
Systems Technical Lead, IT Operations
P: (519) 951-6079
F: (519) 451-6615
mailto: [EMAIL PROTECTED]

..poor planning on your part does not make an emergency on my
part

 This message has originated from Autodata Solutions.  The attached material
is the Confidential and Proprietary Information of Autodata Solutions. This
email and any files transmitted with it are confidential and intended solely
for the use of the individual or entity to whom they are addressed. If you
have received this email in error please delete this message and notify the
Autodata system administrator at  [EMAIL PROTECTED]
<mailto:[EMAIL PROTECTED]>




-Original Message-
From: Dave Morrow
Sent: Thursday, November 13, 2003 11:45 AM
To: 'Tomcat Users List'
Subject: RE: Looking for mod_jk2


ib -lcrypt -lapr-0  -Wl,-soname -Wl,jkjni.so -o
../../../build/jk2/apache2/.libs/jkjni.so
/usr/bin/ld: cannot find -lapr-0
collect2: ld returned 1 exit status
make[1]: *** [../../../build/jk2/apache2/jkjni.la] Error 1
make[1]: Leaving directory
`/root/jakarta-tomcat-connectors-jk2-2.0.2-src/jk/native2/server/apache2'

David Morrow
Systems Technical Lead, IT Operations
P: (519) 951-6079
F: (519) 451-6615
mailto: [EMAIL PROTECTED]

..poor planning on your part does not make an emergency on my
part

 This message has originated from Autodata Solutions.  The attached material
is the Confidential and Proprietary Information of Autodata Solutions. This
email and any files transmitted with it are confidential and intended solely
for the use of the individual or entity to whom they are addressed. If you
have received this email in error please delete this message and notify the
Autodata system administrator at  [EMAIL PROTECTED]
<mailto:[EMAIL PROTECTED]>




-Original Message-
From: Dave Morrow [mailto:[EMAIL PROTECTED]
Sent: Thursday, November 13, 2003 11:39 AM
To: 'Tomcat Users List'
Subject: RE: Looking for mod_jk2


Thanks for the tip.  I have been through your procedure, and cannot get it
to compile.



David Morrow
Systems Technical Lead, IT Operations
P: (519) 951-6079
F: (519) 451-6615
mailto: [EMAIL PROTECTED]

..poor planning on your part does not make an emergency on my
part

 This message has originated from Autodata Solutions.  The attached material
is the Confidential and Proprietary Information of Autodata Solutions. This
email and any files transmitted with it are confidential and intended solely
for the use of the individual or entity to whom they are addressed. If you
have received this email in error please delete this message and notify the
Autodata system administrator at  [EMAIL PROTECTED]
<mailto:[EMAIL PROTECTED]>




-Original Message-
From: Chong Yu Meng [mailto:[EMAIL PROTECTED]
Sent: Wednesday, November 12, 2003 8:54 PM
To: Tomcat Users List
Subject: Re: Looking for mod_jk2


Hi Dave,

The compile is not really so difficult. I've written a section on this
on my website : http://cymulacrum.net/tomcat/jk2_compile.html.

Regards,
pascal chong


Dave Morrow wrote:

>Hi, I was just on jakarta.apache.org and cannot find a Redhat 9 /
>Apache 2 RPM binary. Anyone know where I can get one.  I really do not
>want to have to compile etc (requires ant and the likes which I am not
>familiar with).
>
>David Morrow
>Systems Technical Lead, IT Operations
>P: (519) 951-6079
>F: (519) 451-6615
>mailto: [EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>
>
>..poor planning on your part does not make an emergency on my
>part
>
> This message has originated from Autodata Solutions.  The attached
>material is the Confidential and Proprietary Information of Autodata
>Solutions. This email and any files transmitted with it are
>confidential and intended solely for the use of the individual or
>entity to whom they are addressed. If you have received this email in
>error please delete this message and notify the Autodata system
>administrator at  [EMAIL PROTECTED]
><mailto:[EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>
>>
>
>
>
>
>-
>To unsubscribe, e-mail: [EMAIL PROTECTED]
>For additional commands, e-mail: [EMAIL PROTECTED]
>
>
>
>
>


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

RE: Looking for mod_jk2

2003-11-13 Thread Dave Morrow
It appears that my build is building mod_jk2.so but not jkjni.so
Anyone willing to assist?

David Morrow
Systems Technical Lead, IT Operations
P: (519) 951-6079
F: (519) 451-6615
mailto: [EMAIL PROTECTED]
 
..poor planning on your part does not make an emergency on my
part

 This message has originated from Autodata Solutions.  The attached material
is the Confidential and Proprietary Information of Autodata Solutions. This
email and any files transmitted with it are confidential and intended solely
for the use of the individual or entity to whom they are addressed. If you
have received this email in error please delete this message and notify the
Autodata system administrator at  [EMAIL PROTECTED]
<mailto:[EMAIL PROTECTED]>




-Original Message-
From: Dave Morrow 
Sent: Thursday, November 13, 2003 11:45 AM
To: 'Tomcat Users List'
Subject: RE: Looking for mod_jk2


ib -lcrypt -lapr-0  -Wl,-soname -Wl,jkjni.so -o
../../../build/jk2/apache2/.libs/jkjni.so
/usr/bin/ld: cannot find -lapr-0
collect2: ld returned 1 exit status
make[1]: *** [../../../build/jk2/apache2/jkjni.la] Error 1
make[1]: Leaving directory
`/root/jakarta-tomcat-connectors-jk2-2.0.2-src/jk/native2/server/apache2'

David Morrow
Systems Technical Lead, IT Operations
P: (519) 951-6079
F: (519) 451-6615
mailto: [EMAIL PROTECTED]
 
..poor planning on your part does not make an emergency on my
part

 This message has originated from Autodata Solutions.  The attached material
is the Confidential and Proprietary Information of Autodata Solutions. This
email and any files transmitted with it are confidential and intended solely
for the use of the individual or entity to whom they are addressed. If you
have received this email in error please delete this message and notify the
Autodata system administrator at  [EMAIL PROTECTED]
<mailto:[EMAIL PROTECTED]>




-Original Message-
From: Dave Morrow [mailto:[EMAIL PROTECTED] 
Sent: Thursday, November 13, 2003 11:39 AM
To: 'Tomcat Users List'
Subject: RE: Looking for mod_jk2


Thanks for the tip.  I have been through your procedure, and cannot get it
to compile.



David Morrow
Systems Technical Lead, IT Operations
P: (519) 951-6079
F: (519) 451-6615
mailto: [EMAIL PROTECTED]
 
..poor planning on your part does not make an emergency on my
part

 This message has originated from Autodata Solutions.  The attached material
is the Confidential and Proprietary Information of Autodata Solutions. This
email and any files transmitted with it are confidential and intended solely
for the use of the individual or entity to whom they are addressed. If you
have received this email in error please delete this message and notify the
Autodata system administrator at  [EMAIL PROTECTED]
<mailto:[EMAIL PROTECTED]>




-Original Message-
From: Chong Yu Meng [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, November 12, 2003 8:54 PM
To: Tomcat Users List
Subject: Re: Looking for mod_jk2


Hi Dave,

The compile is not really so difficult. I've written a section on this 
on my website : http://cymulacrum.net/tomcat/jk2_compile.html.

Regards,
pascal chong


Dave Morrow wrote:

>Hi, I was just on jakarta.apache.org and cannot find a Redhat 9 / 
>Apache 2 RPM binary. Anyone know where I can get one.  I really do not 
>want to have to compile etc (requires ant and the likes which I am not 
>familiar with).
>
>David Morrow
>Systems Technical Lead, IT Operations
>P: (519) 951-6079
>F: (519) 451-6615
>mailto: [EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>
> 
>..poor planning on your part does not make an emergency on my 
>part
>
> This message has originated from Autodata Solutions.  The attached 
>material is the Confidential and Proprietary Information of Autodata 
>Solutions. This email and any files transmitted with it are 
>confidential and intended solely for the use of the individual or 
>entity to whom they are addressed. If you have received this email in 
>error please delete this message and notify the Autodata system 
>administrator at  [EMAIL PROTECTED] 
><mailto:[EMAIL PROTECTED] <mailto:[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: Looking for mod_jk2

2003-11-13 Thread Dave Morrow
ib -lcrypt -lapr-0  -Wl,-soname -Wl,jkjni.so -o
../../../build/jk2/apache2/.libs/jkjni.so
/usr/bin/ld: cannot find -lapr-0
collect2: ld returned 1 exit status
make[1]: *** [../../../build/jk2/apache2/jkjni.la] Error 1
make[1]: Leaving directory
`/root/jakarta-tomcat-connectors-jk2-2.0.2-src/jk/native2/server/apache2'

David Morrow
Systems Technical Lead, IT Operations
P: (519) 951-6079
F: (519) 451-6615
mailto: [EMAIL PROTECTED]
 
..poor planning on your part does not make an emergency on my
part

 This message has originated from Autodata Solutions.  The attached material
is the Confidential and Proprietary Information of Autodata Solutions. This
email and any files transmitted with it are confidential and intended solely
for the use of the individual or entity to whom they are addressed. If you
have received this email in error please delete this message and notify the
Autodata system administrator at  [EMAIL PROTECTED]
<mailto:[EMAIL PROTECTED]>




-Original Message-
From: Dave Morrow [mailto:[EMAIL PROTECTED] 
Sent: Thursday, November 13, 2003 11:39 AM
To: 'Tomcat Users List'
Subject: RE: Looking for mod_jk2


Thanks for the tip.  I have been through your procedure, and cannot get it
to compile.



David Morrow
Systems Technical Lead, IT Operations
P: (519) 951-6079
F: (519) 451-6615
mailto: [EMAIL PROTECTED]
 
..poor planning on your part does not make an emergency on my
part

 This message has originated from Autodata Solutions.  The attached material
is the Confidential and Proprietary Information of Autodata Solutions. This
email and any files transmitted with it are confidential and intended solely
for the use of the individual or entity to whom they are addressed. If you
have received this email in error please delete this message and notify the
Autodata system administrator at  [EMAIL PROTECTED]
<mailto:[EMAIL PROTECTED]>




-Original Message-
From: Chong Yu Meng [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, November 12, 2003 8:54 PM
To: Tomcat Users List
Subject: Re: Looking for mod_jk2


Hi Dave,

The compile is not really so difficult. I've written a section on this 
on my website : http://cymulacrum.net/tomcat/jk2_compile.html.

Regards,
pascal chong


Dave Morrow wrote:

>Hi, I was just on jakarta.apache.org and cannot find a Redhat 9 /
>Apache 2 RPM binary. Anyone know where I can get one.  I really do not 
>want to have to compile etc (requires ant and the likes which I am not 
>familiar with).
>
>David Morrow
>Systems Technical Lead, IT Operations
>P: (519) 951-6079
>F: (519) 451-6615
>mailto: [EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>
> 
>..poor planning on your part does not make an emergency on my
>part
>
> This message has originated from Autodata Solutions.  The attached
>material is the Confidential and Proprietary Information of Autodata 
>Solutions. This email and any files transmitted with it are 
>confidential and intended solely for the use of the individual or 
>entity to whom they are addressed. If you have received this email in 
>error please delete this message and notify the Autodata system 
>administrator at  [EMAIL PROTECTED] 
><mailto:[EMAIL PROTECTED] <mailto:[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: Looking for mod_jk2

2003-11-13 Thread Dave Morrow
Thanks for the tip.  I have been through your procedure, and cannot get it
to compile.



David Morrow
Systems Technical Lead, IT Operations
P: (519) 951-6079
F: (519) 451-6615
mailto: [EMAIL PROTECTED]
 
..poor planning on your part does not make an emergency on my
part

 This message has originated from Autodata Solutions.  The attached material
is the Confidential and Proprietary Information of Autodata Solutions. This
email and any files transmitted with it are confidential and intended solely
for the use of the individual or entity to whom they are addressed. If you
have received this email in error please delete this message and notify the
Autodata system administrator at  [EMAIL PROTECTED]
<mailto:[EMAIL PROTECTED]>




-Original Message-
From: Chong Yu Meng [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, November 12, 2003 8:54 PM
To: Tomcat Users List
Subject: Re: Looking for mod_jk2


Hi Dave,

The compile is not really so difficult. I've written a section on this 
on my website : http://cymulacrum.net/tomcat/jk2_compile.html.

Regards,
pascal chong


Dave Morrow wrote:

>Hi, I was just on jakarta.apache.org and cannot find a Redhat 9 / 
>Apache 2 RPM binary. Anyone know where I can get one.  I really do not 
>want to have to compile etc (requires ant and the likes which I am not 
>familiar with).
>
>David Morrow
>Systems Technical Lead, IT Operations
>P: (519) 951-6079
>F: (519) 451-6615
>mailto: [EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>
> 
>..poor planning on your part does not make an emergency on my 
>part
>
> This message has originated from Autodata Solutions.  The attached 
>material is the Confidential and Proprietary Information of Autodata 
>Solutions. This email and any files transmitted with it are 
>confidential and intended solely for the use of the individual or 
>entity to whom they are addressed. If you have received this email in 
>error please delete this message and notify the Autodata system 
>administrator at  [EMAIL PROTECTED] 
><mailto:[EMAIL PROTECTED] <mailto:[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: Looking for mod_jk2

2003-11-12 Thread Chong Yu Meng
Hi Dave,

The compile is not really so difficult. I've written a section on this 
on my website : http://cymulacrum.net/tomcat/jk2_compile.html.

Regards,
pascal chong
Dave Morrow wrote:

Hi, I was just on jakarta.apache.org and cannot find a Redhat 9 / Apache 2
RPM binary. Anyone know where I can get one.  I really do not want to have
to compile etc (requires ant and the likes which I am not familiar with).
David Morrow
Systems Technical Lead, IT Operations
P: (519) 951-6079
F: (519) 451-6615
mailto: [EMAIL PROTECTED]  

..poor planning on your part does not make an emergency on my
part
This message has originated from Autodata Solutions.  The attached material
is the Confidential and Proprietary Information of Autodata Solutions. This
email and any files transmitted with it are confidential and intended solely
for the use of the individual or entity to whom they are addressed. If you
have received this email in error please delete this message and notify the
Autodata system administrator at  [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]


Looking for mod_jk2

2003-11-12 Thread Dave Morrow
Hi, I was just on jakarta.apache.org and cannot find a Redhat 9 / Apache 2
RPM binary. Anyone know where I can get one.  I really do not want to have
to compile etc (requires ant and the likes which I am not familiar with).

David Morrow
Systems Technical Lead, IT Operations
P: (519) 951-6079
F: (519) 451-6615
mailto: [EMAIL PROTECTED]  
 
..poor planning on your part does not make an emergency on my
part

 This message has originated from Autodata Solutions.  The attached material
is the Confidential and Proprietary Information of Autodata Solutions. This
email and any files transmitted with it are confidential and intended solely
for the use of the individual or entity to whom they are addressed. If you
have received this email in error please delete this message and notify the
Autodata system administrator at  [EMAIL PROTECTED]
 >




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