Le mer 31/03/2004 � 22:07, E Cunningham a �crit : > > add libapr.dll or .so to your LD_LIBRARY_PATH? > e > > --- [EMAIL PROTECTED] wrote: > > Hello, > > > > I decided to try the new mod_jk2 today. I put all > > the files in the > > right place, but fot this error when starting up > > httpd: > > > > Starting httpd: Syntax error on line 5 of > > /etc/httpd/conf.d/jk2.conf: > > Cannot load /etc/httpd/modules/mod_jk2.so into > > server: > > /etc/httpd/modules/mod_jk2.so: undefined symbol: > > apr_socket_send > > > > has anyone seen this or know what I have done wrong? > > > > Thanks, > > Devin > > > __________________________________ > Do you Yahoo!? > Yahoo! Small Business $15K Web Design Giveaway > http://promotions.yahoo.com/design_giveaway/ > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > >
Well, you may get more than just symbols in the apr library unresolved at runtime. The error you got is for the first unresolved symbol encountered at runtime. But, anyway, starting with the APR library is probably good. It's definitely a .so file, I assume you are on a Linux or Unix variant system. Adding the library path to the LD_LIBRARY_PATH may worth trying... Personnally, I didn't get this problem with 2.0.4, since I am still with 2.0.2, but I got the same problem with 2.0.2 and I rebuilt the module after correcting a buggy Makefile. But, anyway, the symptoms you described are definitely pointing to something like: The module cannot find the library, even if you know the library is effectively installed on your system. So, the problem is the loader cannot find the library with the information it has. I am not sure if LD_LIBRARY_PATH, or even the ld.so.conf follow by ldconfig, will be enough to correct the problem because I don't know if there is a way to force the module to look only at specific directories determined at compile time, even if it is shared libraries. Your last solution is to build yourself the module. -- ======================================= Daniel Savard Consultation Informatique Daniel Savard 551, boul. Sir-Wilfrid-Laurier suite 105 Beloeil, (Qu�bec) Canada J3G 4J1 T�l: (450) 467-8014 Internet: [EMAIL PROTECTED] ======================================= --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
