1 Reply Latest reply: Apr 23, 2010 8:56 AM by ilssac RSS

    ColdFusion breaking an Apache Virtual Host?

    ilssac Community Member

      We updated the our Apache Configuration file last night.

      After we did the update, all our Virtual Hosts are working as expected accept one.

      This one is returning an *Internal Server Error* for every request we throw at it, htm or cfm.

      Looking at the Apache error logs I see this information

      [Fri Apr 23 08:33:56 2010] [notice] jrApache[2980: 51406]  filterRequest:   no match
      [Fri Apr 23 08:33:56 2010] [notice] jrApache[2980: 51406]  jrun_service: r is 0x2a2bc8, server is 0x16c268, virtual 1
      [Fri Apr 23 08:33:56 2010] [notice] jrApache[2980: 51406]  jrun_service: no handler, return DECLINED
      [Fri Apr 23 08:33:56 2010] [notice] jrApache[2980: 51406]  jrun_trans: sub-request so DECLINED
      [Fri Apr 23 08:33:56 2010] [notice] jrApache[2980: 51406]  jrun_service: r is 0x29a1a8, server is 0x16c268, virtual 1
      [Fri Apr 23 08:33:56 2010] [notice] jrApache[2980: 51406]  jrun_service: no handler, return DECLINED
      [Fri Apr 23 08:33:56 2010] [notice] jrApache[2980: 51406]  jrun_trans: sub-request so DECLINED
      [Fri Apr 23 08:33:56 2010] [notice] jrApache[2980: 51406]  jrun_service: r is 0x343f58, server is 0x16c268, virtual 1
      [Fri Apr 23 08:33:56 2010] [notice] jrApache[2980: 51406]  jrun_service: no handler, return DECLINED
      [Fri Apr 23 08:33:56 2010] [notice] jrApache[2980: 51406]  jrun_trans: sub-request so DECLINED
      [Fri Apr 23 08:33:56 2010] [notice] jrApache[2980: 51406]  jrun_service: r is 0x2d85e8, server is 0x16c268, virtual 1
      [Fri Apr 23 08:33:56 2010] [notice] jrApache[2980: 51406]  jrun_service: no handler, return DECLINED
      [Fri Apr 23 08:33:56 2010] [notice] jrApache[2980: 51406]  jrun_trans: sub-request so DECLINED
      [Fri Apr 23 08:33:56 2010] [notice] jrApache[2980: 51406]  jrun_service: r is 0x2dc600, server is 0x16c268, virtual 1
      [Fri Apr 23 08:33:56 2010] [notice] jrApache[2980: 51406]  jrun_service: no handler, return DECLINED
      [Fri Apr 23 08:33:56 2010] [notice] jrApache[2980: 51406]  jrun_trans: sub-request so DECLINED
      [Fri Apr 23 08:33:56 2010] [notice] jrApache[2980: 51406]  jrun_service: r is 0x347f68, server is 0x16c268, virtual 1
      [Fri Apr 23 08:33:56 2010] [notice] jrApache[2980: 51406]  jrun_service: no handler, return DECLINED
      [Fri Apr 23 08:33:56 2010] [notice] jrApache[2980: 51406]  jrun_trans: sub-request so DECLINED
      [Fri Apr 23 08:33:56 2010] [notice] jrApache[2980: 51406]  jrun_service: r is 0x345f60, server is 0x16c268, virtual 1
      [Fri Apr 23 08:33:56 2010] [notice] jrApache[2980: 51406]  jrun_service: no handler, return DECLINED

      What could this mean?  How would ColdFusion and|or JRun be affecting basic html requests.  We do not have CF configured to handle html requests.

      Here is are Virtual Host block in the Apache configuration file.

      ### www-stagesite ###

      <VirtualHost 134.186.118.85:80>
           DocumentRoot /export/home/stageuser/www/htdocs
           ServerName www-stagesite.inside.cdpr.ca.gov
           ServerAlias www-stagesite
          Include /etc/apache2/aliases_stageuser.conf
          Include /etc/apache2/cf-webserver_www.conf
         
          # Access to prerelease restricted to DPR IP addresses.
      </VirtualHost>

      Other Virtual Host blocks that are using the two include files are working correctly.

      P.S. This Virtual Host was working correctly before last night's update.  But none of the updates we did apply to it as far as I can see.
        • 1. Re: ColdFusion breaking an Apache Virtual Host?
          ilssac Community Member

          Answer found.  Once I thought a bit broader about the issue and got away from CF|JRun issues.

          It was some errant lines in a .htaccess file.  Using features that our configuration does not allow in .htaccess files. 

          So my only question is why would .htaccess file anomolies throw JRun names errors in the Access error.log file?