In some projects, we often forward configuration via Apache to the applications deployed on WebLogic via Apache.
The configuration is as follows:
1, the WebLogic forwarding module mod_wl_22.so, copy to the/home/apache2/modules/directory
WebLogic provides a specialized module, which is located in the ${wl_home}/server/plugin/linux/x86_64 directory of mod_wl_22.so or mod_wl_20.so
2, modify/home/apache/conf under httpd.conf configuration file
Add the following code:
LoadModule Weblogic_module modules/mod_wl_22.so
3, enter the/home/apache/bin start Apache, may be an error. Common Error Collation:
Error 1:
Httpd:syntax error on line 412 of/home/apache/conf/httpd.conf:
cannot load/home/apache/modules/mod_wl_22.so into s Erver:
/home/apache/modules/mod_wl_22.so:cannot Open Shared object file:no such file or directory
Error analysis and resolution: Because we do not have the/home/apache/modules directory decentralized WebLogic forwarding module mod_wl_22.so, and in the httpd.conf has been configured, will report this error. So we just need to put the mod_wl_22.so in the/home/apache/modules directory.
Error 2:
Reference Blog: http://blog.csdn.net/btt2013/article/details/78117939