How to install Apache module mod_rewrite

Kindly tell me, how to install Apache module mod_rewrite which is a standard module in the Oracle HTTP Server (OHS).. I have installed OAS(10.1.2) but mod_rewrite module is missing..
Edited by: SrinivasanSeniorDBA on 26 Feb, 2010 2:42 PM

Got it

Similar Messages

  • How to install memory modules on a macbook pro 15"

    I run Windows 7 via parallels desktop on my macbook pro. How do I type special characters on a Word document using the mac keyboard?

    how to install memory modules on a macbook pro 15"
    Read the manual / user guide that came with your comptuer or download it from http://support.apple.com/manuals/
    I run Windows 7 via parallels desktop on my macbook pro. How do I type special characters on a Word document using the mac keyboard?
    Post your question on the Paralells forums:  http://forums.parallels.com

  • How to install Apache Server on Linux 10G for HTML DB 1.6

    Hello,
    i have Oracle 10g installed under Suse Linux. Apache needed to be installed too in the oracle home but isn't.
    it's required for HTML 1.6 DB install.
    i did not found it with the normal installation image, how to install Apache for Oracle? for 10G?
    Regards
    Carl

    The Apache is on the Companion CD
    http://www.oracle.com/technology/software/products/database/oracle10g/htdocs/linuxsoft.html
    Also HTMLDB 1.5, so Install only the Application Server and add the HTMLDB 1.6 from separate Download

  • How to install Apache Web server on my SAP Content Server

    Dear Experts,
    I am in the process of installaing Content Server in my landscape, i am working on Suse Linux 10 SP2 and planning to install ContentServer 6.30.
    I have read the standard SAP installation document for the same and it says that we need to install Apache Web server version 1.3.XX, so i have downloaded the file apache_1.3.27-x86_64-whatever-linux22.tar.
    Now i want to know the following before i take any actions on my further installation of the Content Server
    What is the difference between Apache and httpd servers (services) are they different or same
    Is the file apache_1.3.27-x86_64-whatever-linux22.tar correct to install Web Server on my Linux system
    Do i have to download any other httpd files
    How to install and start the Web server on my Linux
    Waiting for some information
    Thanks and regards
    BasoKing

    You can install a higher apache also (2.2.x), I'd not use the old versions. I'd also not use a "somwhere" compiled apache, you don't now if that version is clean.
    I'd rather compile an own one, it's not that difficult:
    Note 664384 - Generation info for Apache Web server for SAP Content Server
    The result will be a default webserver (httpd) without any unnecessary modules compiled in.
    Markus

  • 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

  • How to install CPAN modules

    OS Ver: 10.8.5
    I'm just starting to mess around with Perl on my mac, and went to install WWW::Mecahnize, only to find that it would fail via CPAN. After a little digging, i found i needed Xcode command line utilities installed. After that, i found different suggestions of how to continue.
    What is the "best practice" to instal CPAN modules? Should i be root? Should i use a custom directory so as not to mess with the apple supported installation? Is there an article on this?

    chacham wrote:
    Thanx. CPAN via sudo, that just what i needed to know/hear.
    Does that mean that you don't need to know a better option?
    You can install modules into a private CPAN as a non-root user.
    https://wiki.hpcc.msu.edu/display/Bioinfo/Installing+Local+Perl+Modules+with+CPA N
    This will avoid lots of hassles.

  • How to install Apache on Red Hat Linux Server-5.....Urgent Reply

    I have rhel-5 and i need to instal apache on that.I dont have any idea about that.
    Someone please explain step by step how to proceed with it.

    944096 wrote:
    I have rhel-5 and i need to instal apache on that.I dont have any idea about that.
    Someone please explain step by step how to proceed with it.why is it URGENT for me to provide you with any assistance?
    when all else fails Read The Fine Manual
    http://www.oracle.com/pls/db112/portal.portal_db?selected=11
    Handle:     944096
    Status Level:     Newbie
    Registered:     Jul 2, 2012
    Total Posts:     10
    Total Questions:     6 (5 unresolved)
    why do you waste time here when you rarely get your questions answered?

  • How to install Apache Http server on Solaris sparc-32 bit systems

    Hi Friends,
    I installed apache in windows platform, where we have direct .exe file to install apache on windows.
    I heard, in solaris different process of installation is that right...?
    will we get direct .bin executable file for apache like wls923_solaris32.bin or need to we follow diff procedure for apache installation in solaris.
    Please help me
    Thanks
    Deep
    Edited by: user10249953 on Feb 22, 2009 8:28 PM

    Hi Friends,
    I installed apache in windows platform, where we have direct .exe file to install apache on windows.
    I heard, in solaris different process of installation is that right...?
    will we get direct .bin executable file for apache like wls923_solaris32.bin or need to we follow diff procedure for apache installation in solaris.
    Please help me
    Thanks
    Deep
    Edited by: user10249953 on Feb 22, 2009 8:28 PM

  • How to Install Apache 2.x with ssl on solaris 8/9 for reverse proxy

    Hi,
    I need to install Apache 2.x on solaris , along with mod_ssl and openssl . I am not sure where to find the required version for solaris and also where to find openssl and mod_ssl for installation for 2.x.
    I need this for configuring reverse proxy pointing to the Portal.

    Harish,
    I think, I don't get your problem...
    the files are available at http://www.apache.org (binaries and source)
    http://www.artfiles.org/apache.org/httpd/binaries/solaris/
    openssl at http://www.openssl.org
    mod_ssl at http://www.modssl.org
    kr, achim

  • How to install Apache-Weblogic brige for Windows NT 4.0

    I had installed weblogic 5.1 and Apache 1.3.6 at Windows NT 4.0 SP4.Use
    apache as web server ,weblogic as web application server. But I can not find
    the way to install Apache-Weblogic brige, can anybody help me?

    That is correct. However, we plan to add ports to these other platforms in
    the future.
    Thanks,
    Michael
    Michael Girdley
    WLS Product Manager
    cedar z <[email protected]> wrote in message
    news:8ec3s4$5pv$[email protected]..
    It's seem that wl5.1 has no weblogic-to-apache brige for window NT.
    zhao wrote in message <8ebo1h$2gs$[email protected]>...
    I had installed weblogic 5.1 and Apache 1.3.6 at Windows NT 4.0 SP4.Use
    apache as web server ,weblogic as web application server. But I can notfind
    the way to install Apache-Weblogic brige, can anybody help me?

  • How to install Apache Open Office on Yosemite 10.10.1

    I had a MacBook Air late 2008 and it was destroyed by a mean person, now I have a late model MacBook 2009 and updated everything, but I cannot figure out how to load Apache Open Office. It keeps giving me a warning that the security system won't allow anything that is not made by Apple or has its approval or something, but it worked on the 2008 Mac and it worked awesomely! Why can I NOT find anything about it now that I have Yosemite , which is also hard to remember to spell! Any suggestions would be super appreciated especially if they work!!

    Thank you so much!
    I didn't set up my first Mac, the '08, but after I learned how easy it seemed to be compared to Windows, I was a "convert" - not that I was pro-Windows, I didn't know there was anything else-  then had to go to a Windows 8.1 for a couple weeks and wow, lot of new stuff but interesting & so different that maybe I'd be more prepared if they'd changed the name, like Panes or Blocks, ect., instead of Windows! 
    However, coming back to the Mac, it took a little time to get reacquainted, which was't much because my first one rarely needed me to do anything, unlike while I was on Windows just those 14 days of use was frustrating, continual maintenance stuff & I just want to use the thing, not keep it running all the time, but I managed to learn to operate it fairly well, - didn't want to waste the money & be stuck w/it, so thank God for 14 day money back guarantees! I took that money back and added a few bucks more and have quality, the Cadillac of Computers!
    All I needed next was Open Office and I can begin my new business I am starting!
    THANK YOU PHIL0124!!!

  • Consistent annoying problem when compiling and installing Apache modules.

    Every time I build and install mod_jk for Apache (Since binaries are no longer available for Apache 1.3.x on Mac OS X, we have to build it ourselves.), everything goes smoothly until the final 'sudo make install,' and then it finishes with:
    Libraries have been installed in:
    /usr/libexec
    Which is nice, but they're supposed to be installed in /usr/libexec/httpd in Mac OS X. (I don't know if this is a problem for Mac OS X Server too, but I'm using regular old Mac OS X 10.4.10, so I'm posting this here.)
    I'm using this when I call configure:
    % ./configure --with-apxs=/usr/sbin/apxs
    and /usr/sbin/apxs says:
    my $CFG_LIBEXECDIR = q(/usr/libexec/httpd);
    but the resulting Makefile says:
    libexecdir=${APACHE_DIR}/libexec
    So it appears to be ignoring the definition from apxs. It also appears that the definition of libexecdir appears to be variable only up until libexec. It looks like you can't tell it to use a subdirectory.
    It's easy enough to just move the installed files into the httpd directory, with sudo mv /usr/libexec/mod_jk.* usr/libexec/httpd, but it's a little annoying to have to remember to do this every time I upgrade mod_jk.
    Has anybody else run into this with this or other modules? Is it a bug that should be reported to either Apple or Apache? Does anybody have a better solution than moving the files?

    MoonSwan wrote:I have a desktop system and a netbook that I would like to have hibernating when they aren't being used.  The wiki outlined roughly how to accomplish this with this page:  https://wiki.archlinux.org/index.php/Tuxonice
    I downloaded from the AUR the kernel26-ice 2.6.38-4 to compile and install.
    Hm... netbook.
    If you don't mind trying bfs and bfq too, then you could give the pf-kernel that is mentioned in the wiki too a try:
    http://aur.archlinux.org/packages.php?ID=50956
    It has a repository here:
    [pfkernel]
    Server = http://dl.dropbox.com/u/11734958/$arch
    and a thread: https://bbs.archlinux.org/viewtopic.php?id=103462
    I'm not quite sure how netbook performance is affected by BFS...
    It has the bonus to already be based on 3.0.
    Last edited by Cdh (2011-07-28 20:35:50)

  • How to install Apache Soap in OC4J?

    I used Soap in Tomcat an couple of weeks ago. I try to use Soap in OC4j. I can not find any instruction in soap web site. Could you please tell me if you know how to do it?
    Thank you.
    Marian

    Hi,
    to deploy the Apache SOAP (Axis I guess) you can do the following (this deployment is to the global application of OC4J):
    Add to application.xml:
    <web-module id="axis" path="C:\\TEMP\\xml-axis-alpha3\\webapps\\axis" />
    Add to http-web-site.xml or default-web-site.xml (depending if you are running 1.0.2.2 or the pre-release of OC4J v2.0):
    <web-app application="default" name="axis" root="/axis" />
    You can now access the app using the following URL: http://localhost:8888/axis
    Thanks,
    Andy

  • How to instal apache tomcat,,binary?

    i wan to instal and run tomcat,what is different between binary thingie and source code download, how do i use it?

    ok but do i need to do something or insall binary
    thing before i run apache? i tried to read help file
    but wount go through my mindSince the binaries are the program... yes you need to install it before running it.

  • How to install selected modules to save disk space?

    Rapidinstall installs all the modules of the Oracle Applications. But if we want to install only selected modules to save disk space (In R12 disk space requirment is 160+gb) how can we do it?
    Thanks and Regards
    M.A.Rahman

    If you really want to save space, install Vision 11.5.10.2, and upgrade the database to 10.1.0.5. Use the 10g tablespace rename feature to rename all APPS% tablespaces to some other name, can even just remove the APPS_TS from the tablespace names. Truncate applsys.fnd_ts_mig_cmds. The run OATM using uniform 64 KB segment size. The resulting database will be ~40GB, 30GB less than Vision from rapid install.
    Then upgrade to R12 via the procedure in Oracle Applications Upgrade Guide: Release 11i to Release 12 (zipped) B31566-01. The resulting footprint will be about 65 GB, almost 100GB smaller than R12 Vision from rapid install.

Maybe you are looking for

  • HT201210 iPhone 4 stuck in recovery mode and will not restore.

    My iPhone 4 randomly turned off a few days ago and wouldnt turn back on. I plugged it into iTunes which said it was in recovery mode but will not restore as error 1600 keeps propping up. Someone please help, I have tried lots of ways but none are wor

  • Oracle hangs on query with multiple joins

    To test the sotftware from the LMS-vendor that are out partners we use virtual machines where we install Windows 2003 servers and Oracle XE While we were testing the software I've found that a particular query with multiple unions causes the CPU of t

  • Execution of a batch file fails if the batch file has a date

    Hi All, I have a batch file which copies files from one folder to another based on the date condition( if the files are modified or created today copy them). Below is my code set curr_date=%DATE:~4,2%/%DATE:~7,2%/%DATE:~10,4% & XCOPY \\cambosnapp01\F

  • My macbook can't load java

    I am surprised to find out that all of a sudden the applet (java) can't load properly. Before today, 31 July, I was able to use any website that require java platform and the applet doesn't have any problem loading.  For example, I could go to a bank

  • Silent Uninstall for older version of Java 2 RE.

    Is it possible to do a silent uninstall for the older version of Java 2 RE, specifically, RE 1.3.1_11? I know that we can for the newer versions.