Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Apache directive Configurations

Status
Not open for further replies.
Sep 5, 2006
37
US
Hi,

I have multiple Apache Http Servers running on the same HP-UX machine and am running into following issue in deploying applications to the Application server.

Code:
deploy/sca_AIAErrorTaskAdministrationProcess_rev1.0.jar
[deployComposite] INFO: Creating HTTPS connection to host:soaa.eprod.com, port:443
[deployComposite] INFO: Received HTTP response from the server, response code=500
[deployComposite] SEVERE: Invalid logging line: <HTML>
[deployComposite] SEVERE: Invalid logging line: <HEAD>
[deployComposite] SEVERE: Invalid logging line: <TITLE>Weblogic Bridge Message
[deployComposite] SEVERE: Invalid logging line: </TITLE>
[deployComposite] SEVERE: Invalid logging line: </HEAD>
[deployComposite] SEVERE: Invalid logging line: <BODY>
[deployComposite] SEVERE: Invalid logging line: <H2>Failure of server APACHE bridge:</H2><P>
[deployComposite] SEVERE: Invalid logging line: <hr>Cannot open TEMP post file '/tmp/_wl_proxy/_post_17020_6' for POST of 72775 bytes
[deployComposite] SEVERE: Invalid logging line: <hr> </BODY>
[deployComposite] SEVERE: Invalid logging line: </HTML>
[deployComposite] SEVERE: Invalid logging line: <HTML>
[deployComposite] SEVERE: Invalid logging line: <HEAD>
[deployComposite] SEVERE: Invalid logging line: <TITLE>Weblogic Bridge Message
[deployComposite] SEVERE: Invalid logging line: </TITLE>
[deployComposite] SEVERE: Invalid logging line: </HEAD>
[deployComposite] SEVERE: Invalid logging line: <BODY>
[deployComposite] SEVERE: Invalid logging line: <H2>Failure of server APACHE bridge:</H2><P>
[deployComposite] SEVERE: Invalid logging line: <hr><PRE>Internal Server failure, APACHE plugin. Cannot continue.</PRE>
[deployComposite] SEVERE: Invalid logging line: <hr> </BODY>
[deployComposite] SEVERE: Invalid logging line: </HTML>
[deployComposite] ---->response code=500, error:null



I read on this post Link to define the WLTempDir directive on each Apache Server installation to point to different directories so they do not conflict.

As it's a clustered environment so wanted to find out where should I put the below directives

WLLogFile
WLTempDir


I have a configuration file in which the virtual host and other URLs are configured and then have included this configuration file in httpd.conf. Want to find out where to enter the above 2 directives in the below snippet.


Code:
<VirtualHost *:8888>
        ServerName ebs.uat.com
        RewriteEngine On
        RewriteOptions inherit
  <IfModule ossl_module>
   AddCertHeader HTTPS
   SimulateHttps On
  </IfModule>
  
        <Location /weblogic>
                SetHandler weblogic-handler
    
                WebLogicHost ebscon.uat.com
    # Admin Server's port
                WeblogicPort 7007
        </Location>     
        <Location /console>
                SetHandler weblogic-handler
                WebLogicHost ebscon.uat.com
                WeblogicPort 7007
        </Location>
        <Location /consolehelp>
                SetHandler weblogic-handler
                WebLogicHost ebscon.uat.com
                WeblogicPort 7007
        </Location>
        <Location /em>
                SetHandler weblogic-handler
                WebLogicHost ebscon.uat.com
                WeblogicPort 7007
        </Location>
  
        <Location /wsm-pm>
                SetHandler weblogic-handler
    
                WebLogicCluster ebscon1.uat.com:7017,ebscon2.uat.com:7017
        </Location>
  # SOA Suite
  
        <Location /soa-infra>
                SetHandler weblogic-handler
    
                WebLogicCluster ebscon1.uat.com:8007,ebscon2.uat.com:8007
        </Location>
        
        <Location /integration/>
                SetHandler weblogic-handler
                WebLogicCluster ebscon1.uat.com:8007,ebscon2.uat.com:8007
        </Location>
        <Location /b2bconsole>
                SetHandler weblogic-handler
                WebLogicCluster ebscon1.uat.com:8007,ebscon2.uat.com:8007
        </Location>
       
        <Location /soa/composer>
                SetHandler weblogic-handler
                WebLogicCluster ebscon1.uat.com:8007,ebscon2.uat.com:8007
        </Location>
  
  # BAM
  
  <Location /OracleBAM>
                SetHandler weblogic-handler
    # WebLogicCluster PREFIXbam-web1.eprod.com:WLS_BAM1 port,host 2 from environment table:WLS_BAM2 port
                WebLogicCluster ebscon1.uat.com:9007,ebscon2.uat.com:9007
        </Location>
  
  # BPM
  <Location /bpm/composer>
      SetHandler weblogic-handler
      WebLogicCluster ebscon1.uat.com:8007,ebscon2.uat.com:8007
  </Location>
  <Location /bpm/workspace>
      SetHandler weblogic-handler
      WebLogicCluster ebscon1.uat.com:8007,ebscon2.uat.com:8007
  </Location>
  
  # OSB
  <Location /sbinspection.wsil*>
   SetHandler weblogic-handler
   WebLogicCluster ebscon1.uat.com:4017,ebscon2.uat.com:4017
  </Location>
  
  <Location /sbresource*>
   SetHandler weblogic-handler
   WebLogicCluster ebscon1.uat.com:4017,ebscon2.uat.com:4017
  </Location>
  <Location /sbconsole>
   SetHandler weblogic-handler
   WebLogicHost ebscon.uat.com
                 WeblogicPort 7007
  </Location>  
  
  # AIA
  <Location /AIA>
    SetHandler weblogic-handler
    WebLogicCluster ebscon1.uat.com:8007,ebscon2.uat.com:8007
  </Location>
</VirtualHost>


Any help is appreciated.

Thanks
 
whitesox99 said:
I have multiple Apache Http Servers running on the same HP-UX machine

???

Does this mean multiple Apache installs, (unlikely) or one Apache Server installation running multiple virtual hosts (more likely)?

Chris.

Indifference will be the downfall of mankind, but who cares?
Time flies like an arrow, however, fruit flies like a banana.
Webmaster Forum
 
I am have multiple apache installs running it's own virtual host. I am getting

Cannot open TEMP post file '/tmp/_wl_proxy/_post_17020_6' for POST of 72775 bytes

So want to have each apache have it's own /tmp/_wl_proxy and for that need to probably set the directive to specify the path of _wl_proxy folder. So above is the virtual host configuration file and need to find where to add the directive as this file is included in httpd.conf file.

Thanks
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top