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

Similar Messages

  • How to install Oracle HTTP Server 10.1.3.0 on Solaris 10

    Hi !
    I am new to solaris 10 and i want to install oracle HTTP server on solaris 10.
    Kindly can any one share steps/documents how to prepare my system for installation
    uname -r = 5.10
    my user=oracle fro installation
    group=oinstall oracle user group
    Shell = bin/sh bourn shell
    no variable defined in .profile file OR at any place
    my istallation directory=> OracleHome ==> /home/oracle/OracleAs_1
    my oraInventory directory=> orainventory ==> /opt/ora/oraInventory
    following commands executed using root
    chown -R oracle:oinstall /home/oracle
    chown -R oracle:oinstall /opt/ora
    chmod -R 777 /home/oracle
    chmod -R 777 /opt/ora
    ============================
    executing setup using oracle user
    ./runInstaller -executeSysPrereqs command output==> OK/Pass I dont have patch 118345-03
    As patch 118345-03 is not required for the solaris 10with kernal patch/update 5.
    ./runinstaller and installation type= Advance => OC4j was installed successful but http server gives error.
    HTTP server configuration assistant Fails. Setup doesnot complete.
    error ==> http server fails to start Managed processes after the maximun retry limit.
    error status 206
    **** see HTTP_Server~1.log in opmn/logs folder. nothing in log except startprocess and stop process
    **** Apache/Apache/logs don't have any LOG or httpd.id file.
    ========================================
    When i start Apache using apactlstart.sh it runs and i can access http://localhost:777 ===> working with message use opmnctl
    Need Help :) Thanks in advance

    Here is such a description:
    http://onlineappsdba.com/index.php/2007/06/20/install-oracle-soa-suite-101310/
    Jon petter

  • How to install oracle http server in the windows

    Hi,
    Can any one mention how to install oracle HTTP server in windows 2003 server machine?
    regards,
    suresh G.

    Hi,
    Which version of Oracle HTTP Server are you looking for ?
    Download link,
    http://www.oracle.com/technetwork/middleware/ias/downloads/101310-085449.html
    Here you will get both Apache version 1.3.34 for OHS based on Apache 1.3 and Apache version 2.0.55 for OHS based on Apache 2.0.
    Prerequisites
    http://docs.oracle.com/cd/B25222_02/quickinstall.1013/quickinstall/quick_install.htm#sthref9
    Installation steps
    http://docs.oracle.com/cd/B25222_02/install.1013/install/basic_install.htm#sthref274
    On the 1 st screen Select Advanced Installation Mode,
    And select only Oracle HTTP server in the 2nd screen
    Regards
    Fabian

  • 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 set jdk1.6 path in Solaris Sparc 64-bit machine

    Hi All,
    I am very much new to Solaris and do not know whether this is the right place to put my question.
    Already jdk1.5 installed in the machine (it came with the Operating System.)
    I have installed the JDK 1.6 and set the path in .profle file as
    export JAVA_HOME=/usr/JDK1.6
    export PATH=$JAVA_HOME/bin:$PATH
    but still the default environemnt path is pointing to the older version (jdk1.5).
    Please suggest me to set the path to newer version.
    Any help regading this will be highly appreciated.
    Thanks in advance
    Sagar

    http://java.sun.com/docs/books/tutorial/essential/environment/paths.html

  • Enable Apache HTTP Server

    Hello,
    I am still new to FMS... I have installed FMS 4.5 several weeks ago.. but at that time, i did not install Apache HTTP Server. ...
    So, if now i need to enable Apache HTTP Server, can I do install it now alone? or i need to re-install FMS4.5 to get it working?
    thanks

    Hello hparmar,
    thanks for the help and the information. Appreciated. I just want to make sure so that I donot mess things up. I am still very new into this:
    So i will download a copy of conf and application folder
    Install FMS again with http
    the replace the conf and application folder with the ones i downloaded before as back up...
    right? and do i need to uninstall the original server first? before re-installing it?
    Thanks

  • Installing Webcenter Interaction 10g in Solaris SPARC 32 ????

    Hi everyone:
    Im trying to install Webcenter Interaction 10g on solaris SPARC 32 bits but looking for the installation package in OTN http://edelivery.oracle.com/EPD/Search/get_form?results=1 It seems not supported for this plataform ... i'm right ??
    Only a version for aqualogic Interaction but I think that's not works for my development.
    I try to install a linux version and everything seems to went fine but when I try to run the config manager the shell programing detects the plataform with the command uname -s then the process "thinks" that it is on SunOS with 64 bits of course, and it can't go on.
    I appreciate any help from you.
    And lots of thanks in advance.
    Edited by: user11959610 on 19/02/2010 02:11 PM

    On Sun Sparc processor, WCI requires 64-bit OS (32-bit is not supported for Sparc):
    http://www.oracle.com/technology/products/webcenter/files/webcenter_interaction_10gr3_certification_matrix.xls

  • 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

  • Installing the Apache HTTP Server Plug-In as a Dynamic Shared Object

    My environment is: Windows 2000 Server SP3 + Apache 2.0.45 + WebLogic 7.0 SP2
    I followed the install guide.
    1. Locate the shared object file for your platform. >>> No problem
    2. Enable the shared object. >>> No problem
    3. Install the Apache HTTP Server Plug-In in the Apache server with a support
    program called apxs (APache eXtenSion) that builds DSO-based modules outside of
    the Apache source tree, and adds the following line to the httpd.conf file:
    >>> I don't know how to do this. where can I find apxs,
    >>> and should I add "AddModule mod_so.c" in httpd.conf
    >>> I did it, but Apache -t tell me:
    >>> Syntax error on line 173 of D:/Program/Apache/Apache2/conf/httpd.conf:
    Invalid command 'AddModule', perhaps mis-spelled or defined by a module not incl
    uded in the server configuration
    I don't understand the 4th step, where can I find 'perl' and how to use it?
    thanks.

    For Apache 2.x I think you use LoadModule instead of AddModule. That's what
    the docs say anyway.
    "muli" <[email protected]> wrote in message
    news:3ed558aa$[email protected]..
    >
    My environment is: Windows 2000 Server SP3 + Apache 2.0.45 + WebLogic 7.0SP2
    >
    I followed the install guide.
    1. Locate the shared object file for your platform. >>> No problem
    2. Enable the shared object. >>> No problem
    3. Install the Apache HTTP Server Plug-In in the Apache server with asupport
    program called apxs (APache eXtenSion) that builds DSO-based modulesoutside of
    the Apache source tree, and adds the following line to the httpd.conffile:
    I don't know how to do this. where can I find apxs,
    and should I add "AddModule mod_so.c" in httpd.conf
    I did it, but Apache -t tell me:
    Syntax error on line 173 ofD:/Program/Apache/Apache2/conf/httpd.conf:
    Invalid command 'AddModule', perhaps mis-spelled or defined by a modulenot incl
    uded in the server configuration
    I don't understand the 4th step, where can I find 'perl' and how to useit?
    >
    thanks.

  • Installing axis 2 Java in Apache HTTP Server...

    Hi,
    can i install axis 2 java in apache http server...if so can anyone tell me how?

    hi,
    check out from this link
    http://ws.apache.org/axis2/1_3/installationguide.html

  • Installing and Configuring the Apache HTTP Server Plug-In

    Hi,
    I am using WL10.3 in Linux machine.
    I have an environment where I have a single WL server in a domain that is deployed with the web-application
    And I have another domain where I have two managed servers in a cluster that is deployed with the business.
    Now, I want to configure a Apache HTTP server to make it work as a proxy along with the weblogic.
    In my current scenario, the stand alone server proxies the req to the cluster and that is defined in a jndi.properties.
    Now, what should I do if I want to use the Apache
    I have the following questions:
    1. Forget about my env, generally how can I install and configure Apache HTTP plug-in?
    I see we already having libproxy_61.so file inside /bea/wlserver_10.3/server/plugin/linux/i686
    Do i need to install the patch even then as told in http://www.oracle.com/technology/deploy/security/wls-security/2793.html?
    2. While am adding the lines in httpd.conf ,
    LoadModule weblogic_module modules/mod_wl_22.so
    Should I put ibproxy_61.so instead of mod_wl_22.so in this line?
    3. Just by configuring the proxy, the session replication and load balancing will be ensured?
    4.And for my configuration as stated at the beginning few lines, what can be the best architecture?
    Your help is really appreciated.

    Hi,
    Below blog would give you a clear understanding of the Integrating Apache with Weblogic. All your questions are been answered in the below blog.
    http://www.prasannatech.net/2008/07/integrating-apache-tomcat-weblogic.html
    You can for sure apply the patch provided in CVE-2008-3257).
    Keep posted with your findings and let us know if you need any further clarification.
    Regards,
    Hussain

  • 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

  • Apache http server won't run - error 1067 - after installing forms

    Hi, I succesfully installed the 9i on a Windows XP machine. I included the Apache HTTP server in the install. It all worked fine. Then I installed the Oracle development suite (rapid application development selection), and since cannot get the Apache server to run. It gives error 1067. On issueing "F:\oracle\ora90\Apache\Apache>apache.exe start -k" I get the following error: "Syntax error on line 14 of F:\oracle\ora90\rdbms\demo\aqxml.conf: Invalid command 'ApJServGroupMount', perhaps mis-spelled or defined by a module not included in the server configuration".
    Any ideas?? I amnew to both Oracle and Apache. Thanks for any help offered.

    did you install the development suite on a different Oracle home? In case it is on its own oracle home, it happens that the new install overwrites the PATH environment variable and sets the path of the new oracle home prior to the previously installed oracle home, this could affect old oracle home, since it will be looking for libraries and executables at the wrong OH. Change back the PATH environment variable, so the old OH is referred first.
    Start once more the oracle http server, first by means of the windows service, and verify the httpd.pid file doesn't exist prior to attempt restarting it.
    ~ Madrid

  • Will Apache HTTP server version 2.2.x be supported for Solaris 10?

    It appears that the Apache 2.0.x package is still being included in the latest release of Solaris 10. When I checked the Apache site, it says they will no longer be releasing updates for the 2.0.x version family. Is Oracle planning to make an Apache 2.2.x package available and develop future patches?

    Hi,
    You can try using the following approach with +'MatchExpression'+ parameter for the +'VirtualHost'+ configuration, which should solve your problem:
    <VirtualHost *:80>
    ServerAdmin [email protected]
    ServerName << Put your apache server ip-address here>>
    ErrorLog logs/error_log
    <Location */CustomLocationPrefix1** >
    SetHandler weblogic-handler
    +## Select the list of apps/urls for APP1+
    WebLogicCluster 192.168.100.1:7001,192.100.1:7002
    CookieName CUSTOM_JSESSIONID_COOKIE_NAME_1
    Debug ALL
    DebugConfigInfo ON
    WLLogFile C:/wlproxy.log
    </Location>
    <Location */CustomLocationPrefix2** >
    SetHandler weblogic-handler
    +## Select the list of apps/urls for APP2+
    WebLogicCluster 192.168.100.3:7001,192.168.100.4:7002
    CookieName CUSTOM_JSESSIONID_COOKIE_NAME_2
    Debug ALL
    DebugConfigInfo ON
    WLLogFile C:/wlproxy.log
    </Location>
    <Location */CustomLocationPrefix3** >
    SetHandler weblogic-handler
    +## Select the list of apps/urls for APP3+
    WebLogicCluster 192.168.100.5:7001,192.168.100.6:7002
    CookieName CUSTOM_JSESSIONID_COOKIE_NAME_3
    Debug ALL
    DebugConfigInfo ON
    WLLogFile C:/wlproxy.log
    </Location>
    <IfModule mod_weblogic.c>
    +## Combine all the locations for the different web-apps you want to route through apache http server+
    +## (i.e., APP1, APP2, APP3 in this case).+
    WebLogicCluster 192.168.100.1:7001,192.168.100.2:7002,192.168.100.3:7001,192.168.100.4:7002,192.168.100.5:7001,192.168.100.6:7002
    MatchExpression *
    +## The following may not be needed (need to recheck)+
    EnforceBasicConstraints OFF
    </IfModule>
    </VirtualHost>
    Regards,
    Deepak Kerur.
    Edited by: user10231088 on Jul 7, 2011 6:36 PM
    Edited by: user10231088 on Jul 7, 2011 6:36 PM

Maybe you are looking for

  • End of xml file

    i have an existing file called CDlist.xml which contains of xml database the following nodeset taken from the file: <CDlist> <CD> <artist>john</artist> <title>first</title> <number>6</number> <CD> <CD> <artist>mark</artist> <title>secound</title> <nu

  • Issue in reversing the GR

    Hi All, I have a program which is used to reverse the GR for a particular purchase order. Before reversing it, Service Entry Sheet (SES) for that purchase order is released using function module "BAPI_ENTRYSHEET_RESET_RELEASE". After this i have perf

  • Muxing takes forever in DSP4 (compared to DSP3)

    Hi, The company I work for have just updated their G5s (dual 2GHz G5, 2GB RAM) with FCP Studio 2, including DSP 4. The first thing I noticed was how much longer the muxing process is taking, compared to DVD Studio Pro 3 on the same computers. Any rea

  • Problem with Snow Leopard 10.6.3

    I recently bought Snow Leopard 10.6.3 from the Apple Store ($ 29.95). What I got was a single CD in a cardboard box which is marked "Mac OSX Snow Leopard". The cd contains Boot Camp and DVDCD Sharing folders, but nothing more. Where is Snow Leopard ?

  • ISDN dial-up hangs when I play a CD (Win XP Pro)

    I experience a constant problem where: - once I've "dialed up" and connected to my ISP, using my internal PCI ISDN (WB6692) - I try to play a music CD from my CD ROM drive (BCD 48SB), then my internet connection hangs after a few seconds and I can't