How-to install Oracle9i on W2k with IIS ?

I would like installing Oracle9i Personal Edition on my W2k workstation BUT using IIS webserver (so NOT installing the with Oracle9i delivered Apache webserver). I suppose I need to do a Custom install? But what options do I need to deselect? I already tried it once deselecting some options, I thought that were related to Apache, but the system told me that it were necessary options.
So please who can me exactly tell how to achieve the installation 9i with IIS?
Thanks for your help.
Guy

There are two options
1. If you don't want the HTTP Server (Apache Server), go to the Custom and deselect the HTTP Server.
If you cannot do this, then Install Oracle 9i and then follow the following Step.
2. After Installing Oracle 9i, Restart the Machine. Login to the System Using Administrator User Login, Go to the Administrative Tools which will be in Contorl Panel, and Open the Services and Select the "OracleOraHome90HTTPServer" Service and Stop this Serivce and then go to the properties of the same service and change the Automatic startup mode to Disabled. Then Go to the IIS and Restart the IIS now. Know IIS Will Run.
Problem with Apache is, it is also using Prot 80, since IIS is least software Apache is Dominating the IIS. I am also Getting the Same problem I am trying to change the port of the Apache Server if i found any solution for this, I will let know about the Same.
Regards,
Radhakrishnan K
Reply the status so that i can under stand about Ur status

Similar Messages

  • How to install and configure smtp on iis 7 on windows 7

    how to install and configure smtp on iis 7 on windows 7?
    Thanks!

    Here is an article that you may find useful http://eriglen.blogspot.com/2013/01/step-by-step-configuring-automatic-storage-management-on-standalone-server-with-oracle-enterprise-linux-and-oracle-11g-R2-using-external-storage-managed-by-openfiler.html

  • How to install Windows 8.1 with Windows 8 Product key?

    I have purchased Upgrade pack from Windows 7 to Windows 8. I have also Updated the OS to windows 8.1 through Store. How to install Windows 8.1 with Windows 8 Product key?

    The download link for the Windows 8.1 installer at the Upgrade with Product Key Only does not accept a Windows 8.0 product key. I ended up using the trick suggested by Andre Ziegler in this thread to obtain the 8.1 download independent of the Windows
    Store, but I haven't yet checked if the 8.0 key works from 8.1 Setup.
    I do IT for a living but I have plenty of family members that bring their notebook PCs to me and ask me to do the heavy lifting, and I'd rather not re-download the same 3.6 GB every single time someone tells me to fix their PC. I also want to be able to
    re-install 8.1 from the source media in case of a catastrophic hard disk failure and I have to replace the disk.
    As an aside, tools that retrieve product keys for installed products end up retrieving the 8.0 product key from an 8.1 install that was upgraded via the Store.  It kind-of makes sense that an 8.0 key could work to install 8.1 because 8.1 is supposed
    to be a free upgrade for licensed 8.0 users, but this doesn't seem to work until after 8.1 is successfully installed via some trickery and the user supplies the 8.0 key to activate it.

  • How to install 9ifs into 9idb with 9iAS 1.0.2.2.2a in window 2000?

    Anyone know how to install 9ifs into 9idb with 9iAS 1.0.2.2.2a?

    Hi,
    9iFS must be installed in an 9i home type. So you must have it installed in a single box in your 9i DB home. You must use the Apache server of the DB, because the installer will modify the configuration files of this Apache, not this of 9iAS.
    After just modify the port the 9i apache is listening (use 81 instead of 80 for example).
    Be careful that if you install a new apache for the 9i database, your vw_gateway_cfg environment variable will be changed and will point to the 9i home instead of the 9ias home. So you have to change it back to your 9iAS home if you want to use the portal !!!!
    Regards
    Pierre

  • How to install and config Struts with oc4j?

    Hi,
    I download jakarta-struts-1.0,but I don't know
    how to install and config Struts with oc4j?Can you
    tell me the detail steps?
    Thanks!

    Follow the instructions in this link:
    http://jakarta.apache.org/struts/installation-oas.html. It's
    for Orion but should also apply for oc4j.

  • How to install Oracle form 6i with Oracle8.1.7 on the same driver?

    My machine is P4 with W2K.
    How to install Oracle form6i with Oracle8.1.7 on this machine?
    Could some one give me the details?
    Thanks a lot!!

    Hi Shay,
    Thanks for help. I got it.
    The problem I met is I should not export/import Oralce folder in registry.
    If do that, Oracle only configure one home to either oracle817 or form6i.
    Thanks again

  • 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 Oracle developer/2000 with Oracle8i

    hi, my dear firends
    please show me how to install the Oracle Developer/2000 with Oracle8i. or where i can find the install guide for that.
    thank you
    yours
    frank

    Hi you !
    You can do steps:
    1. Install Oracle developer/2000 into Oracle Home: Default - the first.
    2. Install Oracle8i/9i into another Oracle Home - the seconde
    Good luck for you !
    [email protected]
    hi, my dear firends
    please show me how to install the Oracle Developer/2000 with Oracle8i. or where i can find the install guide for that.
    thank you
    yours
    frank

  • How to install E-bussiness suite with out creating the database?

    We are planning to Migrate our Single node Tru64 E-bussines suit installation to multi node IBM-AIX (DB Node) and Sun Solaris(APPL_TOP)
    We are thinking to follow below step
    1) Install E-Bussines suit with out Oracle Database( Only Oracle DB sotware and Apps Filesystem need to be installed) -- IBM AIX (DB Node) & Sun Solaris (APPL_TOP)
    2) Migrate current Oracle DB on Tru64 into IBM AIX using transportable Tablespace method
    It is ok to follow this approach?
    How to install Oracle E-bussiness suit with out Oracle Database? ( Only Oracle DB sotware and Apps Filesystem need to be installed)
    Thanks
    John

    John,
    For migrating the application tier, please refer to the following note:
    Note: 238276.1 - Migrating to Linux with Oracle Applications Release 11i
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=238276.1
    For the database, you need to export/import the database.
    Note: 369693.1 - Using Oracle Applications with a Split Configuration Database Tier on Oracle 10g Release 2
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=369693.1
    Note: 362205.1 - 10g Release 2 Export/Import Process for Oracle Applications Release 11i
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=362205.1
    Note: 304489.1 - Using Oracle Applications with a Split Configuration Database Tier on Oracle 9i Release 2
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=304489.1
    Note: 230627.1 - 9i Export/Import Process for Oracle Applications Release 11i
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=230627.1
    1) Install E-Bussines suit with out Oracle Database( Only Oracle DB sotware and Apps Filesystem need to be installed) -- IBM AIX (DB Node) & Sun Solaris (APPL_TOP)
    2) Migrate current Oracle DB on Tru64 into IBM AIX using transportable Tablespace method
    It is ok to follow this approach? 1) What about the patches you have applied since the time of the installation? Doing a fresh installation will not include these patches.
    2) The supported method to migrate an Oracle Apps database between two Operating Systems which are not binary compatible is by using export/import. I believe transportable Tablespace has some limitations and would not work for such migration.
    How to install Oracle E-bussiness suit with out Oracle Database? ( Only Oracle DB sotware and Apps Filesystem need to be installed)You would need to follow the steps in the notes referenced above. However, to answer your question, please refer to:
    Oracle Applications Installation Guide: Using Rapid Install - Chapter 5, Installing Technology Stack Components
    http://download-uk.oracle.com/docs/cd/B25516_14/current/acrobat/r115102ins.pdf

  • How to install the jms bundle with netbeans IDE

    hello friends,
    i am feeling a lots of problem since i am having the package of jms but don't know how to install it with NetBeans 3.6 IDE. i am unable to mount it on the j2sdk1.4_02 . please tell me how to install it, so that i can use this using netbeans ide.

    hi
    send me the bundle or tip me on how to get it.
    I have j2sdk1.4.2_03 and NetBean 4.1. I can try it out with you.
    though, I am using the jsmsengine from sourceforge.org, java activation framework and java communication API.
    when I get the gsm device, I'll be more resourceful or what do yoy use

  • How to install OS9 in OSX with OS9 disk?

    I just got a G4 with OSX installed and no disks I want to load OS9 for classic support with the OS9 disk I own. Do I need to do anything special to install? All the forums mention the OSX disk which wasn't included in the purchase I made. I don't suppose I could just copy the os9 system folder from my old computer and place it where it belongs in OSX ? Thanks for the help. CJ

    CJ:
    Welcome to Apple Discussions.I don't suppose I could just copy the os9 system folder from my old computer and place it where it belongs in OSX ?Yes, you may. Andrew is right. I have done it many times and it works perfectly. The beauty of doing this is that you don't have to do all the updates that you would have to do if you installed from disk.
    The only concern I would have is whether Mac OS 9 drivers were installed when the disk was formatted for OS X. If they weren't, OS 9 would not work no matter how you installed. They very well might have been installed, though as DU usually has it selected by default.
    Good luck.
    cornelius
    PismoG4 550, 100GB 5400 Toshiba internal, 1 GB RAM; Pismo 500 OS (10.4.4)   Mac OS X (10.3.9)   Beige G3 OS 8.6

  • Who can tell me how to install Oracle9i Database under redhat7.3

    I want to install Oracle9i Database under redhat7.3,but fail,can you tell me how to install it.

    You can set it at infopackage level.
    Go to infopackage-> Scheduler menu-->Data S Default Size(something like this).
    Inside this you have option to set size of datapackage.
    Hope this helps.

  • How to install webgate on tomcat with solaris 10 AMD 64bits?

    Hi Experts
    I need to install a webgate on the webserver tomcat, but i found that installation is not possible because thes is not webgate for tomcat, many people recommended install a reverse proxy with Apache or OHS but i can't find a webgate installer on Solaris 10 AMD 64bits.
    Exists that version of webgate? or exist a workaround??
    what is your suggestion??

    Choose the Webserver and the WebGate from the OAM support matix.
    If OAM does not have WebGate for the platform where you have tomcat installed, if it is an option, you can install a webserver and WebGate on any OAM supported OS and configure Reverse Proxy. WebGate does not need to be on the same server/machine or on same platform.

  • How to install ecc 6.0 with XI

    Hi guys can you pls put some light on how to install ecc6.0 and its components like XI, EP etc?
    Ashish

    HI Ashis
    IF you want to install to ECC6.0 then the 200+ page installation guide and the planning guides are all on the Service Marketplace. The only mySAP ERP 2005 documentation on www.sap.com is here but it is not very technical (http://www.sap.com/solutions/business-suite/erp/index.epx).
    for ep and xi
    In nw2004s , you can install on any Application system.
    http://help.sap.com/saphelp_nw2004s/helpdata/en/47/eaae42edc6b211e10000000a155106/content.htm
    All the guides related to Netweaver 04s can be found at
    http://service.sap.com/instguides -> Netweaver 04s ->
    Installation -> Planning and Installation guides.
    Going through them may give you a better idea of the
    prerequisites.
    Cheers..
    Vasu
    <i>** Reward Points if found useful **</i>

  • How to install hp deskjet 1000 with out the disk, we lost the disc

    hp deskjet 1000 printer j110a need to know how to install without the disc to my laptop

    brew31 wrote:
    how can i install printer without the diskPlease read this post then provide some details.  What printer model? What operating system?  Do you have a 32 bit or 64 bit version?  In general you can click "Support and Drivers" at the top of the page, enter your product number, select the specific model, then select the proper operating system.  Next look for an appropriate driver, typically the full featured driver will be the one to download.  Save the download and once the download has completed run the installer.  If you have a USB printer you should not connect the printer until instructed to by the installer.

Maybe you are looking for