The fact that the run-time linker tries to look for the C library in the /sybase directory only means that /sybase is in the search path. On Solaris there are several ways of defining the search path for dynamic linking. First of all there is a system default. Then a search path can be added to an application at compile time. Finally, environment variables may add additional path elements to the run-time search path. libc.so is located in /usr/lib (/lib) which also happens to be the Solaris default search path (run the "crle" command to verify). If the default search path does not contain /lib or /usr/lib, you may either change the default path using "crle -u -l /lib:/usr/lib", or add this path to the LD_LIBRARY_PATH environment variable prior to launching the application. Additional reading: man crle man ld.so.1 man ld -ascs -----Original Message----- From: Amalan, S [mailto:Sountharanayaga.Amalan@xxxxxxxxxxxx] Sent: Tuesday, March 28, 2006 8:06 PM To: users@xxxxxxxxxxxxxxxx Subject: RE: [users@httpd] making Apache work with WebLogic Alex, OS = SunOS 5.8 Great idea re: truss. I ran it and found the following in the output: stat("/opt/SUNWspro/lib/libc.so.1", 0xFFBEF0BC) Err#2 ENOENT stat("/usr/openwin/lib/libc.so.1", 0xFFBEF0BC) Err#2 ENOENT stat("/sybase/sybase11/lib/libc.so.1", 0xFFBEF0BC) Err#2 ENOENT <- I don't need Sybase, so I don't know why it was looking for this lib stat("/opt/IXImd12s/lib/libc.so.1", 0xFFBEF0BC) Err#2 ENOENT stat("/lib/cmplrs/cob/coblib/libc.so.1", 0xFFBEF0BC) Err#2 ENOENT I guess the missing libs are associated with C, but didn't see any specific requirements from BEA regarding C libs to get their plug-in to work. I have started the ball rolling to get these libs installed (the dirs exist, just these libs from the output above are missing), and once it is done, I will try running Apache again. Thanks much for the suggestion. Amalan -----Original Message----- From: Alexander Lazic [mailto:al-httpdusers@xxxxxxx] Sent: Tuesday, March 28, 2006 1:06 AM To: users@xxxxxxxxxxxxxxxx Subject: Re: [users@httpd] making Apache work with WebLogic Hi, On Mon 27.03.2006 22:20, Amalan, S wrote: > >I am trying to make Apache work with WebLogic so that Apache functions >like a proxy webserver which forwards the requests back and forth >between a user and the WebLogic Web/App Server. On which OS (Sun/Linux/...)? >The only configuration I had to make to Apache's >APACHE_HOME/conf/httpd.conf file was: >LoadModule weblogic_module modules/mod_wl128_20.so > >Listen 10.8.32.16:1180 > ># adding new section for WebLogic information ><IfModule mod_wl128_20.so> > WebLogicHost 10.8.32.26 > WebLogicPort 7013 ></IfModule> > >The other settings remained as set during the Apache installation. > >However, when I start Apache (apachectl start), I get an error message >in the logs/error_log file: > >[Mon Mar 27 22:06:29 2006] [crit] (13)Permission denied: mod_weblogic: >Parent could not create lock >Configuration Failed > >What does this mean? Have you try to look with strace/truss/... on which 'file' you get this error? Regards Aleks --------------------------------------------------------------------- The official User-To-User support forum of the Apache HTTP Server Project. See <URL:http://httpd.apache.org/userslist.html> for more info. To unsubscribe, e-mail: users-unsubscribe@xxxxxxxxxxxxxxxx " from the digest: users-digest-unsubscribe@xxxxxxxxxxxxxxxx For additional commands, e-mail: users-help@xxxxxxxxxxxxxxxx --------------------------------------------------------------------- The official User-To-User support forum of the Apache HTTP Server Project. See <URL:http://httpd.apache.org/userslist.html> for more info. To unsubscribe, e-mail: users-unsubscribe@xxxxxxxxxxxxxxxx " from the digest: users-digest-unsubscribe@xxxxxxxxxxxxxxxx For additional commands, e-mail: users-help@xxxxxxxxxxxxxxxx --------------------------------------------------------------------- The official User-To-User support forum of the Apache HTTP Server Project. See <URL:http://httpd.apache.org/userslist.html> for more info. To unsubscribe, e-mail: users-unsubscribe@xxxxxxxxxxxxxxxx " from the digest: users-digest-unsubscribe@xxxxxxxxxxxxxxxx For additional commands, e-mail: users-help@xxxxxxxxxxxxxxxx