Setup Apache on Ultra 20

I want to setup web server Apache. My machine is Sun Ultra 20 shipped with apache installed. But i dont know how to check whether apache is running or not ? if it is not running how to start it.
I am getting the below output of
ps - ef | grep httpd
nobody 520 515 0 08:28:05 ? 0:00 /usr/apache/bin/httpd
nobody 519 515 0 08:28:05 ? 0:00 /usr/apache/bin/httpd
nobody 521 515 0 08:28:05 ? 0:00 /usr/apache/bin/httpd
nobody 522 515 0 08:28:05 ? 0:00 /usr/apache/bin/httpd
nobody 523 515 0 08:28:05 ? 0:00 /usr/apache/bin/httpd
root 515 1 0 08:28:04 ? 0:00 /usr/apache/bin/httpd
Pl help me in setting up Apache..how to start around...stuff like that ?
Thanks
ravindra

But the out put of the svcs -l apache2 gave the following output.
# svcs -l apache2
fmri svc:/network/http:apache2
name Apache 2 HTTP server
enabled false
state disabled
next_state none
state_time Sat May 13 09:56:16 2006
restarter svc:/system/svc/restarter:default
dependency require_all/error svc:/network/loopback:default (online)
dependency optional_all/error svc:/network/physical:default (online)
what does this mean ?
But i think that the apache running on my box is....How to know what apache version is running on my box ?

Similar Messages

  • Java Servlet Setup Apache/Tomcat

    How do I setup a CLASSPATH to a file called serverhub.jar in a folder. (ex. c:\javaclient/serverhub.jar)
    Then I need to name the Servlet "hub" and give it a class name of com.peregrine.hub.HubServlet
    Then I need to give it initialization arguments
    servers=servername:6000
    default=servername
    threads=500
    Can someone tell me where to setup these items for a tomcat jserver and an apache http server. I already have the jserver and apache server up and running.

    You set this up under the TOMCAT_HOME/webapps/"servlet context"/WEB_INF directory. This directory should contain a classes directory, which contains your servlet class. It should also contain a lib directory, where you put the jar files. Finally, it should contain a web.xml file. This XML file is where you specify the servlet name, servlet class and initialization parameters.
    You can follow the examples located in TOMCAT_HOME/webapps/examples or see http://jakarta.apache.org/tomcat/tomcat-3.2-doc/appdev/index.html

  • Jakarta Tomcat Connectors (JK) + OC4J setup questions

    hi
    i'd like to use Apache 2.0 for dispatching requests to OC4J. i've been doing some experimenting and i was able to setup Apache and Jakarta Tomcat Connectors (JK) v1.2 to route requests to OC4J. this seems to be working fine in my development environment but how well supported or reliable is this setup?
    the requests are now being dispatched to JDeveloper 10.1.3 embedded OC4J instance. the only way i managed to do this was by modifying the embedded-oc4j/config/default-web-site.xml file and changing the web-site element protocol attribute value to "ajp13". this setup has the drawback that now direct http connections don't work anymore. is there a way to have both ajp13 and http connectors working simultaneously in the embedded OC4J?

    Sure there is. Add another web site configuration file, say, myHttp-web-site.xml, which is a copy > of the original default-web-site.xml with http protocol and a different port.
    ..after retrying this it seems to be working now. thanks.
    Can you share how you use the Jakarta Tomcat Connectors v1.2 here?sure, here you go:
    build JK
    # download JK v1.2.15 from http://tomcat.apache.org/download-connectors.cgi
    tar zxf jakarta-tomcat-connectors-1.2.15-src.tar.gz
    cd jakarta-tomcat-connectors-1.2.15-src/jk/native
    ./configure --with-apxs=/foo/bar/apache2055/bin/apxs
    make
    make install
    Configure Apache + JK
    # add the following lines to Apache httpd.conf
    LoadModule jk_module modules/mod_jk.so
    JkWorkersFile conf/workers.properties
    JkMount /<myctxroot>/* oc4j
    JkLogFile logs/mod_jk.log
    JkLogLevel debug
    # create conf/workers.properties with the following lines
    worker.list=oc4j
    worker.oc4j.port=8009
    worker.oc4j.host=localhost
    worker.oc4j.type=ajp13
    configure JDev OC4J
    cd $OC4J_HOME/embedded-oc4j/config
    cp default-web-site.xml ajp-web-site.xml
    # modify web-site element protocol attribute value to "ajp13" in ajp-web-site.xml
    # add the following line in embedded-oc4j/config/server.xml
    <web-site default="false" path="./ajp-web-site.xml" />
    # restart OC4J
    # restart Apache

  • How to install Apache Web Server with PHP on Sun Solaris Sparc machine

    Hi,
    We are trying to install the Apache Web Server and the PHP package on a Sun Solaris Sparc machine running on SunOS 5.8. We are having compilation problems with the source code of both these packages.
    Does anybody know if there are ready solaris packages for Apache and PHP available from where we can download and install instead of source code compilation?
    Or any instructions / things to watch for when installing Apache with PHP (if anybody has tried installing Apache with PHP on Sun Solaris earlier) is most welcome.
    Thanks,
    Harish

    Apache should be bundled along with Solaris check in "/var/apache" in Solaris 8 and Solaris 9
    php is available at www.php.net
    I found an old document for installing PHP maybe this will help.
    Cheers
    -Dhruva
    +++++++++++++++++++++++++++++++++++++++++++++++++++++++Installing PHP 3.x for Apache 1.x.x on Solaris
    Introduction
    This document describes how to install PHP for Apache on Solaris.
    You should have Apache installed before trying to install PHP.
    If you want to use PHP with MySQL then you must install MySQL first.
    Before we Begin
    1. These instructions assume that you have Apache installed according to instructions.
    Getting PHP
    1. You must be logged in as root to perform this installation.
    su root
    2. I save all my downloads in:
    /usr/local/dist
    If you don't already have one, you may need to create that directory now:
    mkdir /usr/local/dist
    3. You can get PHP 3.0.14 from here(www.php.net).
    cd /usr/local/dist
    ftp ftp.php.net
    cd pub/distributions
    bin
    get php-3.0.14.tar.gz
    bye
    Installing PHP
    1. We will install PHP in /usr/local/build, but use a tricky tar command
    to do it in on hit from the download directory:
    cd /usr/local/dist
    tar xvfz php-3.0.12.tar.gz -C ../build
    Compiling PHP
    1. First let's get where the action is:
    cd /usr/local/build/php-3.0.14
    2. You now have 3 options:
    * Simple PHP install without MySQL - goto step 3
    * Simple PHP install with MySQL - goto step 4
    * Custom PHP install - goto step 5
    3. Simple PHP install without MySQL. Next, jump to step 6.
    ./configure --with-apache=../apache_1.3.12
    4. Simple PHP install with MySQL. MySQL must be installed before you can configure PHP to use it. I recommend that MySQL should always be reachable with /usr/local/mysql. Even if you install it else where you
    should create a symbolic link from /usr/local/mysql. Otherwise the compiler can have problems finding the mysqlclient library. The command
    should look like this:
    ./configure with-mysql=/usr/local/mysql with-apache=../apache_1.3.12
    Next, jump to step 6.
    5. Custom PHP install. Take a look at the available configuration directives by using this command:
    ./configure --help
    6. Now we can make the PHP executable. This may take a while.
    make
    7. Now we install the PHP module with:
    make install
    Adding the PHP Module to Apache
    1. Now we have to setup Apache to include the PHP module:
    cd ../apache_1.3.12
    2. Re-configure Apache to use the PHP module. You should use your previous Apache configure command along with the PHP activate module directive.
    You can see your previous Apache configure command by doing:
    cat config.status
    You can configure Apache using the previous command with the added PHP module by doing:
    ./config.status --activate-module=src/modules/php3/libphp3.a
    If you used the simple Apache install from instructions the command will look like this:
    ./configure prefix=/usr/local/apache activate-module=src/modules/php3/libphp3.a
    3. Make and install Apache with PHP enabled:
    make
    4. We need to stop the server before installing the files:
    /usr/local/apache/bin/apachectl stop
    5. Now we can install the new binaries:
    make install
    6. Start apache again (now running the new php enabled version):
    /usr/local/apache/bin/apachectl start
    Setting Up PHP
    1. We have to tell Apache to pass certain file extensions to PHP. We do this in Apache's httpd.conf file.
    cd /usr/local/apache/conf
    2. Edit the httpd.conf file. If you do a search for php you will find a couple of commented out lines telling Apache to use the PHP module. You should uncomment them to look like this.
    AddType application/x-httpd-php3 .php3
    AddType application/x-httpd-php3-source .phps
    3. I prefer to use the extension .phtml, you can use whatever extension you like (even .html) by adding lines to httpd.conf like this:
    AddType application/x-httpd-php3 .phtml
    Check that it Works
    1. We have to restart Apache to make these changes take effect on the running server.
    cd /usr/local/apache/bin
    ./apachectl restart
    2. Apache should now be running with PHP enabled. The server version should include PHP/3.0b2.
    ./apachectl status
    Apache Server Status for dev.synop.com
    Server Version: Apache/1.3.9 (Unix) PHP/3.0.12
    Server Built: Oct 25 1999 00:37:07
    3. Now it is time to test PHP with a page. The simplest thing to do is create a page called test.php3. My file is here. This file contains the
    following text:
    <?php phpinfo(); ?>
    4. Point your browser at this file on the virtual host which you used:
    http://localhost/test.php3

  • WL Server & apache 2 integration: mod_weblogic: could not create lock

    Hi,
    we're running Apache 2.0.50 as a front-end for WL Server 8.1 using mod_weblogic as the proxy.
    We have to run Apache as a different user than the default LocalSystem account to be able to access a windows share. But when we set up Apache to run as a user (in the windows domain) the server will not start up. Looking at the error log I can see the following message:
    [Wed Jan 26 16:10:37 2005] [crit] (OS 5)Access is denied. : mod_weblogic: could not create lock
    The user has administrative rights on the server so I'm not really sure why mod_weblogic can not obtain a lock.
    What is the lock it's trying to obtain?
    Thanks.
    Ruairi

    Hello,
    has this been resolved by anyone in the meantime? I'm running into the same kind of problem. Here's my setup:
    Apache 2.0.55, on Solaris 8
    mod_wl_20.so, from Bea Weblogic Server 8.1 SP 2
    When I have the following line in my httpd.conf file:
    LoadModule weblogic_module modules/mod_wl_20.so
    I receive the following error in Apache's error log file:
    [timestamp] [crit] (13)Permission denied: mod_weblogic: could not create lock
    I am currently not running Apache as root. Without the weblogic module, it works fine.
    I guess my main question is: what kind of lock is it trying to obtain? Changing the AcceptMutex parameter in Apache does not seem to help.
    Regards,
    Ralf

  • Apache - weblogic  connector query

    I am configuring Apache 2.0 - Weblogic server 8.1 on Linux.
    In this setup, Apache is the Web Server and Weblogic is the App Server. We
    are using the library "mod_wl_20.so" to connect Apache and Weblogic.
    Weblogic default port : 7001
    Apache default port : 80
    After configuring this setup, the request are getting correctly routed
    through the apache server port. i.e. the URL
    http://localhost:80/gepam/jsp/test.jsp gets the proper request from
    weblogic.
    But at the sane time , we are also able to hit the site using the weblogic
    server port i.e. http://localhost:7001/gepam/jsp/test.jsp . We want to
    disable this weblogic web server port.
    Any clue on how to go about. Your valuable suggestion is highly appreciated.

    We don't have apache plugin for Win NT.
    check our platform support page.
    Kumar
    ASIF wrote:
    where can i get apache-weblogic PLUGIN for
    WINNT

  • Weblogic - apache connector

              I am configuring Apache 2.0 - Weblogic server 8.1 on Linux. In this setup, Apache
              is the Web Server and Weblogic is the App Server. We are using the library "mod_wl_20.so"
              to connect Apache and Weblogic.
              Weblogic default port : 7001 Apache default port : 80
              After configuring this setup, the request are getting correctly routed through
              the apache server port. i.e. the URL http://localhost:80/gepam/jsp/test.jsp gets
              the proper request from weblogic.
              But at the sane time , we are also able to hit the site using the weblogic server
              port i.e. http://localhost:7001/gepam/jsp/test.jsp . We want to disable this weblogic
              web server port.
              Any clue on how to go about. Your valuable suggestion is highly appreciated.
              

              I am configuring Apache 2.0 - Weblogic server 8.1 on Linux. In this setup, Apache
              is the Web Server and Weblogic is the App Server. We are using the library "mod_wl_20.so"
              to connect Apache and Weblogic.
              Weblogic default port : 7001 Apache default port : 80
              After configuring this setup, the request are getting correctly routed through
              the apache server port. i.e. the URL http://localhost:80/gepam/jsp/test.jsp gets
              the proper request from weblogic.
              But at the sane time , we are also able to hit the site using the weblogic server
              port i.e. http://localhost:7001/gepam/jsp/test.jsp . We want to disable this weblogic
              web server port.
              Any clue on how to go about. Your valuable suggestion is highly appreciated.
              

  • Apache + Tomcat - Can't run xsql demos

    I have the following setup -
    Apache 1.3.9
    Tomcat 3.1
    XSQL 1.0.4.3
    JDK 1.3
    HPUX 11.0
    Oracle 8.1.6
    I have followed the instructions in the XQL release notes on installation and configuration but I am having a problem running the demos. When I try the http://localhost/xsql/index.html url, I get a garbled page. Looks like the home.xsql/homecontent.xsql pages didn't run sucessfully. Anybody else run into something similar?
    fwiw, I have been able to sucessfully run the helloworld.xsql demo on the command line using the xsql executable.

    Found the resolution for this problem. I had to add the following two lines in my httpd.conf file -
    AddType text/xsql .xsql
    AddHandle jserv-servlet .xsql
    The demos work just fine after making this change and restartin the Apache server.
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Bhadresh Patel ([email protected]):
    I have the following setup -
    Apache 1.3.9
    Tomcat 3.1
    XSQL 1.0.4.3
    JDK 1.3
    HPUX 11.0
    Oracle 8.1.6
    I have followed the instructions in the XQL release notes on installation and configuration but I am having a problem running the demos. When I try the http://localhost/xsql/index.html url, I get a garbled page. Looks like the home.xsql/homecontent.xsql pages didn't run sucessfully. Anybody else run into something similar?
    fwiw, I have been able to sucessfully run the helloworld.xsql demo on the command line using the xsql executable.<HR></BLOCKQUOTE>
    null

  • Please advise good RAID card for MSI 745 Ultra

    I wish to add a RAID controller,
    so that I may have a backup of my data drive
    (IBM 40gb 7200rpm ATA100).
    I have purchased an identical drive
    that I want to use as a mirror ("RAID 1", I believe
    this is called.
    What RAID controllers would be the most compatible, fastest,  and most reliable?
    The drive will be doing some hard work, writing audio data while it is being received in Cakewalk SONAR.
    So the write speed must be able to keep up with "real time."
    Thank you so much for your advice!
    Here is my setup:
    MSI 745 Ultra (SiS 745 chipset)
    AMD Athlon XP 2000+ CPU
    512mb PC-333 DDR
    ATi Radeon 8500
    M-Audio Delta 44 & Audiophile 2496
    Enermax 350w Power Supply Unit (do you think it's enough?)
    Seagate 7200 20gb HD (WinXP on Primary Master IDE)
    MAXTOR 20gb 5400rpm (Primary Slave)
    SONY 52x CD-rom (secondary master)
    ... and ASUS 40x CD-RW (secondary slave)

    3Ware makes the best IDE RAID controllers, hands down.
    Basically, a 3Ware RAID controller is comparable to a SCSI RAID controller except that its IDE. Just about every other IDE RAID controller, the ones you find soldered on a motherboard in particular, is crap. Go 3ware, or don't go RAID at all. You won't regret it.

  • Apache, virtual hosts & cgi-bin

    Hello all,
    I have an AL server running apache, qmail, vpopmail (&mysql), bincimap, squirrelmail.
    I've setup apache to have 2 virtual hosts :
    www.mydomain.com (with docroot /home/httpd/html/www.mydomain.com) as http & mail.mydomain.com (with docroot /home/httpd/html/mail.mydomain.com) as https.
    Everything is working fine so far, except when I ask for http://mail.mydomain.com (not https) it shows the contents of www.mydomain.com. Minor annoyance, but I'd like to fix it some time. Any suggestions ?
    My main problem is that I want to install qmailadmin in mail.mydomain.com, so I can access it via ssl, so I installed it as /home/httpd/cgi-bin/qmailadmin & made a symlink to /home/httpd/html/mail.mydomain.com/cgi-bin.
    When I try to access it (https://mail.mydomain.com/cgi-bin/qmailadmin), I get "500 Internal server error" & in error_log:
    [error] [client MY_IP] Premature end of script headers: qmailadmin
    and in ssl_request_log :
    [14/Jan/2004:17:00:45 +0200] MY_IP TLSv1 RC4-MD5 "GET /cgi-bin/qmailadmin HTTP/1.1" 674
    I've never setup cgi-bin in virtual hosts before & it's driving me nuts, any suggestions ?
    btw, qmailadmin works fine on my home server without any virtual hosts in apache...

    This isn't perfect, but it's probably pretty close to what you're looking for.  You may need to play around with some <Directory/> tags for your cgi-bin directory, or (as the example illustrates below), just put your cgi scripts in the document root for mail.mydomain.com.
    <Directory "/home/httpd/html/www.mydomain.com">
    AllowOverride All
    Order allow,deny
    Allow from all
    </Directory>
    <Directory "/home/httpd/html/mail.mydomain.com">
    AllowOverride All
    Options ExecCGI
    Order allow,deny
    Allow from all
    </Directory>
    NameVirtualHost 192.168.1.114:80
    NameVirtualHost 192.168.1.114:443
    <VirtualHost www.mydomain.com:80>
    SSLDisable
    Servername www.mydomain.com
    ServerAdmin [email protected]
    DocumentRoot /home/httpd/html/www.mydomain.com
    DirectoryIndex index.html index.htm index.cgi
    ErrorLog logs/www.mydomain.com_error.log
    CustomLog logs/www.mydomain.com_access.log combined
    </Virtualhost>
    # redirect 80 to 443
    <VirtualHost mail.mydomain.com:80>
    SSLDisable
    Servername mail.mydomain.com
    Redirect / https://mail.mydomain.com
    </Virtualhost>
    <VirtualHost mail.mydomain.com:443>
    SSLEnable
    SSLCertificateFile /home/httpd/conf/mail.mydomain.com.pem
    ServerName mail.mydomain.com
    ServerAdmin [email protected]
    DocumentRoot /home/httpd/html/mail.mydomain.com
    ErrorLog logs/mail.mydomain.com_error.log
    CustomLog logs/mail.mydomain.com_access.log combined
    </Virtualhost>
    hth,
    farphel

  • Apache default encoding

    How to setup apache to use default encoding? Because when I open link with directory index it set charset type 8859-1 How to set it up to UTF-8?

    AddDefaultCharset utf-8
    http://httpd.apache.org/docs/2.0/mod/co … ultcharset

  • Apache J2EE configuration

    I have just installed CFMX 7 trial version in J2EE
    configuration. Is it possible to setup apache http server as a
    webserver in this configuration? Or, apache server can be
    integrated with only in standard edition or server configuration?
    Thanks in advance.

    Apache can be used in J2EE config also. We're actually
    running clustered CF on Tomcat with Apache + mod_jk in front (on a
    separate machine). I don't have the details right now, but it's
    possible.

  • Apache virtual hosting and URL prefixes

    I am having a bit of trouble with processing PHP after
    setting up a virtual server on apache.
    This is the setup:
    Apache is installed and the document root is "C:\Program
    Files\Apache Group\Apache2\htdocs" which was originally set as
    localhost as well
    Virtual hosting is to be set up for "C:\WEBSITES\mysite" This
    directory, you will note,is outside the htdocs directory.
    I edited the httpd.conf file as follows to set up a virtual
    server.
    <VirtualHost 127.0.0.1:80>
    DocumentRoot "C:\WEBSITES\mysite"
    ServerName mysite.local
    </VirtualHost>
    I didnt forget to remap localhost either ..........
    <VirtualHost 127.0.0.1:80>
    DocumentRoot "C:\Program Files\Apache Group\Apache2\htdocs"
    ServerName localhost
    </VirtualHost>
    the hosts file got tweaked too to include this:
    127.0.0.1 localhost
    127.0.0.1 mysite.local
    Everything was restarted and hey presto localhost still
    processes PHP properly but mysite doesnt.
    I am pretty sure i've set the url prefix wrong. The DWeaver
    help files refer to an IIS setup. Could anybody fill me in on what
    to put in this line and why. Any other pitfalls in setting this up
    would also be kindly received
    PS - port 80 is the listening port if it helps.

    All I did when I set up Apache was to set the document root
    to what I
    wanted:
    DocumentRoot "C:\webserver"
    and I put my documents in the "webserver" directory. I did
    this cause the
    htdocs directory path is way long .. it works fine.
    Mine is localhost:8080 cause I have IIS on 80 but I don't see
    where it
    should matter.
    Nancy Gill
    Adobe Community Expert
    BLOG:
    http://www.dmxwishes.com/blog.asp
    Author: Dreamweaver 8 e-book for the DMX Zone
    Co-Author: Dreamweaver MX: Instant Troubleshooter (August,
    2003)
    Technical Editor: DMX 2004: The Complete Reference, DMX 2004:
    A Beginner's
    Guide, Mastering Macromedia Contribute
    Technical Reviewer: Dynamic Dreamweaver MX/DMX: Advanced PHP
    Web Development
    "mark81" <[email protected]> wrote in
    message
    news:[email protected]...
    >I am having a bit of trouble with processing PHP after
    setting up a virtual
    > server on apache.
    >
    >
    > This is the setup:
    >
    > Apache is installed and the document root is "C:\Program
    Files\Apache
    > Group\Apache2\htdocs" which was originally set as
    localhost as well
    >
    > Virtual hosting is to be set up for "C:\WEBSITES\mysite"
    This directory,
    > you
    > will note,is outside the htdocs directory.
    >
    >
    >
    > I edited the httpd.conf file as follows to set up a
    virtual server.
    >
    > <VirtualHost 127.0.0.1:80>
    > DocumentRoot "C:\WEBSITES\mysite"
    > ServerName mysite.local
    > </VirtualHost>
    >
    > I didnt forget to remap localhost either ..........
    > <VirtualHost 127.0.0.1:80>
    > DocumentRoot "C:\Program Files\Apache
    Group\Apache2\htdocs"
    > ServerName localhost
    > </VirtualHost>
    >
    >
    > the hosts file got tweaked too to include this:
    > 127.0.0.1 localhost
    > 127.0.0.1 mysite.local
    >
    >
    > Everything was restarted and hey presto localhost still
    processes PHP
    > properly
    > but mysite doesnt.
    >
    >
    > I am pretty sure i've set the url prefix wrong. The
    DWeaver help files
    > refer
    > to an IIS setup. Could anybody fill me in on what to put
    in this line and
    > why.
    > Any other pitfalls in setting this up would also be
    kindly received
    >
    >
    > PS - port 80 is the listening port if it helps.
    >
    >

  • Apache does'n propagate request information to OC4J

    Hello,
    We are successfuly using a great piece of code, modNTLM (sets REMOTE_USER request variable to "PRAHA\Kolek_R" for example), on our intranet server. We are implementing security on "LOCATION" container (see uncommented part of httpd.conf bellow). Everything works fine till time we tried to apply security on "remote" location. In other words security on "local" location only works fine.
    So, the question is, how we have to setup apache to behave the same way in respect of "remote" locations ? The redirection to remote location we implemented through ProxyPass and ProxyPassReverse directives as You can see bellow in commented section. It works well except of discovering the username of incomming user. It can be seen in access.log file too.
    Note that "remote" location is placed on our application server (OC4J) and apache serves as its frontend.
    PLEASE FORGET THAT WE ARE USING NOT SUPPORTED APACHE MODULE (MODNTLM) AND PLEASE HELP US TO DISCOVER WHY APACHE (FRONTEND) DOES NOT PROPAGATE REQUEST INFORMATION TO APPLICATION SERVER (BACKEND).
    Please help and & thanks in advance for Your time and answer,
    Radim.
    access.log entry in case of "local" location, proxy entries stays commented
    160.218.101.56 - PRAHA\Kolek_R [29/May/2002:10:39:29 +0200] "GET /webstore/test.jsp HTTP/1.1" 404 319
    access.log entry in case of "remote" location, proxy entries are uncommented
    160.218.101.56 - - [29/May/2002:10:39:27 +0200] "GET /webstore/test.jsp HTTP/1.1" 401 505
    piece of httpd.conf file
    #<IfModule mod_proxy.c>
    # ProxyRequests On
    # ProxyPass /webstore/ http://dbiatest:8888/webstore/
    # ProxyPassReverse /webstore/ http://dbiatest:8888/webstore/
    #</IfModule>
    <Location /webstore>
    Order deny,allow
    Deny from all
    AuthType NTLM
    AuthName "WebStore"
    NTLMAuth On
    NTLMAuthoritative On
    NTLMOfferBasic Off
    require valid-user
    satisfy any
    </Location>

    BTW I also tried to deploy same application on Tomcat and run same load test with same scenario but don't see such error in Tomcat log file. So I guess this is Oracle AS related issue but not general Apache issue.

  • KT4 Ultra-sr and AGP 8X

    Here's the issue:
    I can't get my board to recognize that I have an 8X aGP video card.
    I have KT4 with AMI BIOS 1.0 (have tried 1.1)
    VIA 4in1 drivers with AGP 3.0 support
    Radeon 2.4 catalyst drivers
    Tech support says to set AGP timing option in BIOS to "AUTO" ...... HOWEVER! this option does not exist in my BIOS regardless of version!
    Powercolor video card tech support denies any AGP timing limitation on their card and insist it should be recognized as 8X
    ANY HELP IS APPRECIATED!!!!
    [size=11]I have the following setup:
    MSI KT4 ultra-sr
    Athlon XP 2200+ (thouroughbred core)
    512 mb  pc2400 Samsung ram
    350 watt tgi silent power supply
    IBM 60 GXP deskstar 7200 rpm HD
    16x pioneer dvd
    24x philips cd-rw
    powercolor evil commando radeon 9000 pro 128 mb
      golden version (supposed to be 8X agp)
    liquid cooled server case w/ xtra stealth case fans.   [/SIZE]  

    i admire your determination, but believe me its going to be a lot easier (and cheaper) to just buy another board. its not as easy as "finding the correct controller chip" and getting the soldering iron out. i certainly don't think you can just "buy" a single IEEE1394 controller IC off the shelf anywhere, and there's some VERY precise soldering in place, possibly through several layers too.
    as an alternative suggestion, you could always change your PCI network adapter to a USB type, then you could use a IEEE1394 PCI card

Maybe you are looking for

  • File open dialog box broken in all apps! ( 10.5.6/7

    Hi, I've got a very odd problem that Apple phone support seem to be unable to solve. Basically, every file open dialog box system wide is broken, from file->open in textedit to the browse button on websites for uploading files. When trying to display

  • Read only columns in Planning Webform

    Hi All, I have build a form with Period (months jan, feb and Mar) and members of Custom called Type dimension in Columns. The members in Type dimension I have selelcted is Type1, Type1 Adj, Type2,Type2 Adj. My requirement is that I want to show Type1

  • How do I save a file in the Dreamweaver CC folder on my computer's hard drive?

    Hi, I bought Dreamweaver CC.  I am trying to put a flash button in Dreamweaver that will like to another web site. The problem I am running into is when I try to save the flash button into my computer's Dreamweaver folder, I get a message saying "Con

  • Hyperlinks in pdf's from Word

    Can I create pdfs from Word with active hyperlinks in standard Acrobat?

  • ITunes/QuickTime update from June 11  - missing files.

    Updated iTunes/Quick Time on June 11 per the automatic notification that updates were ready to be downloaded and installed.  Can't open iTunes now.  I get the error message "iTunes cannot run because some of it's required files are missing.  Please r