Oracle HTTP Server + PHP

Does anyone know how to enable PHP support on Oracle HTTP Server (from Oracle DB Companion CD)? I tried to compile PHP on it, bet I get the following error:
Configuring SAPI modules
checking for AOLserver support... no
checking for Apache 1.x module support via DSO through APXS...
Sorry, I was not able to successfully run APXS. Possible reasons:
1. Perl is not installed;
2. Apache was not compiled with DSO support (--enable-module=so);
3. 'apxs' is not in your path. Try to use --with-apxs=/path/to/apxs
The output of /u01/app/oracle/product/10.1.0/cp_1/Apache/Apache/bin/apxs follows
ld.so.1: /u01/app/oracle/product/10.1.0/cp_1/Apache/Apache/bin/httpd: fatal: libdms2.so: open failed: No such file
or directory
apxs:Error: Sorry, no DSO support for Apache available
apxs:Error: under your platform. Make sure the Apache
apxs:Error: module mod_so is compiled into your server
apxs:Error: binary `/u01/app/oracle/product/10.1.0/cp_1/Apache/Apache/bin/httpd'.
configure: error: Aborting
Oracle HTTP server does not have DSO support, is there some possibility to enable it? Or there exists another way to enable PHP support on Oracle HTTP server.

Could you paste the full command line you used to run the configure script? My initial guess is that you didn't specify the full path to Apache's apxs (usually located somewhere around "$ORACLE_HOME/Apache/Apache/bin/apxs"). Among other things, try making sure you've specified "--with-apxs=$ORACLE_HOME/Apache/Apache/bin/apxs" on the command line.
If you don't know where apxs might be, you can also usually try finding apxs with "find / -name apxs > find.out". If you have "find" on your flavor of *n?x, this will output all files exactly matching the name "apxs" to a file named "find.out" in your current directory. You can usually view the file by running "cat find.out" on the command line. Look for lines in the file with "Apache" on them and/or your Oracle install directory (or $ORACLE_HOME).                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

Similar Messages

  • Oracle 10g HTTP Server + PHP

    Does anyone know how to enable PHP support on Oracle HTTP Server (from Oracle DB Companion CD)? I tried to compile PHP on it, bet I get the following error:
    Configuring SAPI modules
    checking for AOLserver support... no
    checking for Apache 1.x module support via DSO through APXS...
    Sorry, I was not able to successfully run APXS. Possible reasons:
    1. Perl is not installed;
    2. Apache was not compiled with DSO support (--enable-module=so);
    3. 'apxs' is not in your path. Try to use --with-apxs=/path/to/apxs
    The output of /u01/app/oracle/product/10.1.0/cp_1/Apache/Apache/bin/apxs follows
    ld.so.1: /u01/app/oracle/product/10.1.0/cp_1/Apache/Apache/bin/httpd: fatal: libdms2.so: open failed: No such file
    or directory
    apxs:Error: Sorry, no DSO support for Apache available
    apxs:Error: under your platform. Make sure the Apache
    apxs:Error: module mod_so is compiled into your server
    apxs:Error: binary `/u01/app/oracle/product/10.1.0/cp_1/Apache/Apache/bin/httpd'.
    configure: error: Aborting
    Oracle HTTP server does not have DSO support, is there some possibility to enable it? Or there exists another way to enable PHP support on Oracle HTTP server.

    Your existing PHP already extracts as binary - that's what is causing
    a problem.
    The two functions I mentioned convert to ASCII using their respective
    encodings. What format you want depends on what you want to do with
    the string.
    Here is some code that may be helpful.
    <?php
    // Fetch a RAW and convert to a hexidecimal representation similar to
    // fetching it as a SQLT_STR
    $c = oci_connect("hr", "hr", "XE");
    // Create test table
    $s = oci_parse($c, "create table rtable(rcol raw(2000))");
    oci_execute($s);
    // Load first 2000 bytes of the test.gif image into the RAW
    $img = file_get_contents( dirname(__FILE__)."/test.gif");
    $img = substr($img, 0, 2000);
    $s = oci_parse ($c, "insert into rtable (rcol) values (:bv)");
    oci_bind_by_name($s, ":bv", $img, -1, SQLT_BIN);
    oci_execute($s);
    // Query the RAW and convert to one form of ASCII representation
    $stid = oci_parse($c, 'select rcol from rtable');
    oci_execute($stid);
    print '<table border="1">';
    while ($row = oci_fetch_array($stid, OCI_ASSOC+OCI_RETURN_NULLS)) {
      echo "<tr><td>";
      echo bin2hex($row['RCOL']);
      echo "</td></tr>\n";
    echo '</table>';
    // Clean up
    $stmt = oci_parse($c, "drop table rtable");
    oci_execute($stmt);
    ?>-- cj

  • Using php with oracle http server

    Hello folks
    This question might have been answered on this forum, but i haven't found it yet.
    Is it possible to integrate php into the apache server that is supplied with the oracle (9.2) database, the so called Oracle HTTP Server?
    What technical issues are to consider and how do you do it on linux in that case? (SLES8)
    Is there any support issues to consider if somebody modifies this oracle supplied http server?
    Looking very much forward to some help...
    Regards,
    Christian

    Well it was a spelling mistake in the beginning. I get the following output now:
    ./configure --with-oci8=$ORACLE_HOME \
    --with-apxs=/opt/oracle/product/9ir2/Apache/Apache/bin/apxs \
    --enable-sigchildcreating cache ./config.cache
    checking host system type... i686-pc-linux-gnu
    checking for gcc... gcc
    checking whether the C compiler (gcc ) works... yes
    checking whether the C compiler (gcc ) is a cross-compiler... no
    checking whether we are using GNU C... yes
    checking whether gcc accepts -g... yes
    checking whether gcc and cc understand -c and -o together... yes
    checking how to run the C preprocessor... gcc -E
    checking for AIX... no
    checking if compiler supports -R... no
    checking if compiler supports -Wl,-rpath,... yes
    checking for re2c... exit 0;
    checking for ranlib... ranlib
    checking whether ln -s works... yes
    checking for gawk... gawk
    checking for bison... bison -y
    checking for bison version... 1.35 (ok)
    checking for flex... lex
    checking for yywrap in -ll... no
    checking lex output file root... ./configure: line 2425: lex: command not found
    configure: error: cannot find output from lex; giving up

  • Oracle HTTP Server 10.1.2.0.2 + php 5

    Hi everybody
    I need to know if is possible and supported, configure Php 5 (5.1.16). with Oracle HTTP Server 10.1.2.0.2
    Where i can find information about this issue.
    thank´s

    "For Oracle Application Server 10g (9.0.4) and later releases, Oracle support is provided for mod_php in the same manner as for mod_perl, the plug-in module for Perl, another popular scripting language. While Oracle does not support the PHP interpreter and language, it does support versions of OHS which include mod_php and will assist in configuration and inclusion of mod_php into OHS. Also, Oracle will assist in diagnosing some PHP problems and will forward PHP interpreter bugs to the relevant open source development organizations." [1]
    [1] "Statement of Direction: Oracle Application Server 10g and PHP"
    http://www.oracle.com/technology/tech/php/htdocs/php_ohs_sod.html
    Instructions on how to install and use PHP with OHS
    http://www.oracle.com/technology/products/ias/ohs/htdocs/php_ohs.htm
    Kind regards,
    Christopher L. Simons

  • Is my configuration correct? PHP and Oracle HTTP server

    Hi all,
    I have a single server running RHEL5 x86-64 and Oracle 11.1. I also have the Oracle HTTP Server which purportedly has "PHP support".
    I am trying to do a basic test connect to my database, but I'm getting an error.
    My test is the following:
    <html>
    PHP Test with Oracle<head>
    <body>
    <pre>
    <?php
    $conn = oci_connect('scott', 'tiger', 'myserver/MYDBSERVICE');
    if (!$conn) {
    trigger_error("Could not connect to database", E_USER_ERROR);
    ?>
    </pre>
    </body>
    </html>When I open the page, I see the following:
    PHP Test with Oracle
    Fatal error: Call to undefined function: oci_connect() in /u01/app/oracle/product/HTTP_Server/ohs/htdocs/phptest/dtest4.php on line 6
    I've also tried phpinfo() and get the following:
    oci8
    OCI8 Support      enabled
    Revision      $Revision: apache_modules/mod_php/4.3.9/ext/oci8/oci8.c#0 $
    Oracle Version      10.1
    Compile-time ORACLE_HOME      /ade/svadugur_mjoyphp4311/oracle
    Libraries Used      no value
    Any idea what may be going on? I've looked through much documentation already before posting to no avail.
    Thank you for any insight.

    The oci_* names were introduced in PHP 5. In PHP 4 the equivalent connection command is ocilogon(). For other mappings see Appendix C of the free book http://www.oracle.com/technetwork/topics/php/underground-php-oracle-manual-098250.html
    I'd recommend you upgrade PHP. See "Installing OCI8 with Oracle Application Server on Linux" on p 76 of that book. Note the warnings.

  • 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

  • Weblogic certificate is not being authenticated in Oracle HTTP Server

    I am using Oracle HTTP Server with SSL and mod_proxy set up trying to pass a url through to the weblogic server. I start with my OHS url in the browser and the proxy is switches to the url to weblogic but I get the following error on the OHS side:
    [2011-12-22T18:40:09.4683-07:00] [OHS] [INCIDENT_ERROR:32] [OHS-2077] [core.c] [host_id: denovm11-6] [host_addr: 10.139.164.196] [tid: 1155799360] [user: root] [ecid: 004hBXzInYHEOPb_THt1ic0007DM000002] [rid: 0] [VirtualHost: social.us.oracle.com:443] nzos proxy handshake error, nzos_Handshake returned 29024(server social.us.oracle.com:443, client 10.139.164.191)
    [2011-12-22T18:40:09.4683-07:00] [OHS] [INCIDENT_ERROR:32] [OHS-2171] [core.c] [host_id: denovm11-6] [host_addr: 10.139.164.196] [tid: 1155799360] [user: root] [ecid: 004hBXzInYHEOPb_THt1ic0007DM000002] [rid: 0] [VirtualHost: social.us.oracle.com:443] NZ Library Error: Invalid X509 certificate chain [Hint: the client probably doesn't provide a valid client certificate]
    [2011-12-22T18:40:09.4685-07:00] [OHS] [INCIDENT_ERROR:32] [OHS-9999] [core.c] [host_id: denovm11-6] [host_addr: 10.139.164.196] [tid: 1155799360] [user: root] [ecid: 004hBXzInYHEOPb_THt1ic0007DM000002] [rid: 0] [VirtualHost: social.us.oracle.com:443] (20014)Internal error: proxy: pass request body failed to 10.139.164.191:7001 (denovm11-1.us.oracle.com)
    [2011-12-22T18:40:09.4685-07:00] [OHS] [INCIDENT_ERROR:32] [OHS-9999] [core.c] [host_id: denovm11-6] [host_addr: 10.139.164.196] [tid: 1155799360] [user: root] [ecid: 004hBXzInYHEOPb_THt1ic0007DM000002] [rid: 0] [VirtualHost: social.us.oracle.com:443] proxy: pass request body failed to 10.139.164.191:7001 (denovm11-1.us.oracle.com) from 10.139.164.196 ()
    And the following error on the weblogic side:
    ####<Dec 22, 2011 6:40:10 PM MST> <Warning> <Security> <denovm11-1> <AdminServer> <[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <8e6c6502a1af117a:4eeee51e:13466bb040d:-8000-000000000000a764> <1324604410502> <BEA-090482> <BAD_CERTIFICATE alert was received from denovm11-6.us.oracle.com - 10.139.164.196. Check the peer to determine why it rejected the certificate chain (trusted CA configuration, hostname verification). SSL debug tracing may be required to determine the exact reason the certificate was rejected.>
    Here is my ssl.conf from OHS:
    # Oracle HTTP Server mod_ossl configuration file: ssl.conf #
    # OHS Listen Port
    Listen 443
    <IfModule ossl_module>
    ## SSL Global Context
    ## All SSL configuration in this context applies both to
    ## the main server and all SSL-enabled virtual hosts.
    # Some MIME-types for downloading Certificates and CRLs
    AddType application/x-x509-ca-cert .crt
    AddType application/x-pkcs7-crl .crl
    # Pass Phrase Dialog:
    # Configure the pass phrase gathering process.
    # The filtering dialog program (`builtin' is a internal
    # terminal dialog) has to provide the pass phrase on stdout.
    SSLPassPhraseDialog builtin
    # Inter-Process Session Cache:
    # Configure the SSL Session Cache: First the mechanism
    # to use and second the expiring timeout (in seconds).
    SSLSessionCache "shmcb:${ORACLE_INSTANCE}/diagnostics/logs/${COMPONENT_TYPE}/${COMPONENT_NAME}/ssl_scache(512000)"
    SSLSessionCacheTimeout 300
    # Semaphore:
    # Configure the path to the mutual exclusion semaphore the
    # SSL engine uses internally for inter-process synchronization.
    <IfModule mpm_winnt_module>
    SSLMutex "none"
    </IfModule>
    <IfModule !mpm_winnt_module>
    SSLMutex pthread
    </IfModule>
    ## SSL Virtual Host Context
    <VirtualHost *:443>
    <IfModule ossl_module>
    # SSL Engine Switch:
    # Enable/Disable SSL for this virtual host.
    SSLEngine on
    # Client Authentication (Type):
    # Client certificate verification type and depth. Types are
    # none, optional and require.
    SSLVerifyClient none
    # SSL Cipher Suite:
    # List the ciphers that the client is permitted to negotiate.
    SSLCipherSuite SSL_RSA_WITH_RC4_128_MD5,SSL_RSA_WITH_RC4_128_SHA,SSL_RSA_WITH_3DES_EDE_CBC_SHA,SSL_RSA_WITH_DES_CBC_SHA,TLS_RSA_WITH_AES_128_CBC_SHA,TLS_RSA_WITH_AES_256_CBC_SHA
    # SSL Certificate Revocation List Check
    # Valid values are On and Off
    SSLCRLCheck Off
    #Path to the wallet
    SSLWallet "${ORACLE_INSTANCE}/config/${COMPONENT_TYPE}/${COMPONENT_NAME}/keystores/default"
    <FilesMatch "\.(cgi|shtml|phtml|php)$">
    SSLOptions +StdEnvVars
    </FilesMatch>
    <Directory "${ORACLE_INSTANCE}/config/${COMPONENT_TYPE}/${COMPONENT_NAME}/cgi-bin">
    SSLOptions +StdEnvVars
    </Directory>
    BrowserMatch ".*MSIE.*" \
    nokeepalive ssl-unclean-shutdown \
    downgrade-1.0 force-response-1.0
    </IfModule>
    <IfModule proxy_module>
    ProxyRequests Off
    <Proxy *>
    Order deny,allow
    Allow from all
    </Proxy>
    # Path to the wallet
    SSLProxyWallet "${ORACLE_INSTANCE}/config/${COMPONENT_TYPE}/${COMPONENT_NAME}/keystores/default"
    SSLProxyEngine on
    SSLProxyVerify none
    # ottest : denovm11-1
    ProxyPass /test https://abc.us.oracle.com:7001/test
    ProxyPassReverse /test https://abc.us.oracle.com:7001/test
    </IfModule>
    </VirtualHost>
    </IfModule>
    On the OHS side I have all the certificates needed so SSL is working properly. The weblogic environment is currently working fine with other webgates, but those are apache and we are trying to switch to OHS.
    Can OHS use mod_proxy to connect to weblogic or do I need to use mod_wl_ohs?
    Does anyone see anything wrong in my ssl.conf file in regards to the proxy section.
    Thanks in advance.

    In summary:
    You need to create a new wallet with CSR (certificate signing req)
    Send this to your certificate authority and get the signed server certificate.
    Now import the signed server cert and the trusted root cert in to the wallet that you created newly.
    Modify ssl.conf to point to the new wallet location.
    To create wallet refer to : http://docs.oracle.com/cd/E25054_01/core.1111/e10105/wallets.htm#CHDGIJDC
    Further reference: http://docs.oracle.com/cd/E25054_01/core.1111/e10105/sslconfig.htm#CBDGIJDF
    Dont mind if this doc is 500 pages ;)

  • Oracle HTTP Server (OHS)  Installation Problem on Win 2003 Server SP2

    Hi,
    I tried to install Oracle HTTP Server (OHS) on my Windows 2003 server SP2, however I couldn't manage to succeed this.
    I tried on 3 different win2003 server SP2 machines and couldn't able to install properly.
    I easily installed and run this HTTP server on my Windows 7 machine. However on the other partition of my PC
    windows server 2003 is installed. It didn't worked on this OS.
    Once I was somehow able to install OHS on my 64 bit Windows 2008 Server, but again never:((
    I got the following error messages during the install.
    waiting for your answers .
    ERROR1
    Web Tier Configuration
    Log
    Config Action Web Tier Configuration started
    Create and Start AS Instance (instance1)
    Error
    Unable to validate NonJ2EEManagement Application deployment on admin server.
    Step Create and Start AS Instance (instance1) failed
    Unable to validate NonJ2EEManagement Application deployment on admin server.
    Step Create and Start AS Instance (instance1) failed
    Log
    Step Create and Start AS Instance (instance1) started
    Deploying NonJ2EEManagement Application...
    Step Create and Start AS Instance (instance1) failed
    Step Create and Start AS Instance (instance1) failed
    Create and Start OHS Component (ohs1)
    Log
    Create Shortcuts
    Log
    ERROR2
    Web Tier Configuration
    Log
    Config Action Web Tier Configuration started
    Create and Start AS Instance (inst2)
    Error
    Unable to start opmn
    Step Create and Start AS Instance (inst2) failed
    Unable to start opmn
    Step Create and Start AS Instance (inst2) failed
    Log
    Step Create and Start AS Instance (inst2) started
    Creating Oracle Instance directories...
    Recording OPMN ports reservations...
    Bootstrapping OPMN configuration files...
    Instantiating opmnctl for direct usage...
    Registering instance
    Step Create and Start AS Instance (inst2) failed
    Step Create and Start AS Instance (inst2) failed
    Create and Start OHS Component (ohs2)
    Log
    Create Shortcuts
    Log

    A few guesses what could be wrong.
    - Under which user are you installing, does this user have all the rights to create and start stuff.
    - Have you first installed a weblogic server (this should be installed) and did associate any components with the weblogic domain?
    I usually do not associate anything with my weblogic domain and configure the httpd.conf file for the Apache server by hand instead of using the enterprise manager.
    Once the WebLogic server is installed i follow the following steps
    Installation WebTier
    Run setup.exe
    Select Install Software - Do Not Configure.
    Click Next.
    Prerequisite Checks --> Next.
    Accept the default installation directory.
    Click Next.
    Uncheck i wish to... click Next (in the pop-up Yes)
    Click Install.
    Click when the installation it finished and click Finish
    Configuration WebTier
    Run the file <WebTier-Home>/bin/config.bat.
    Click Next
    Uncheck Associate Selected Components with WebLogic Domain and click Next
    Accept the defaults and click Next
    Enter the parameters for the WebCache
    Web Cache Administrator Password: password
    Confirm Password: password
    Click Next.
    Select Auto Port Configuration and click Next.
    Uncheck I wish to... and click Next. (pop-up Yes)
    Click Configure
    Click Next and Click Finish
    When i follow the above steps an instance of the webtier is running.

  • Installation Problem about ORACLE HTTP SERVER 10g

    I tried to install oracle http server on windows xp sp2. Everthing was all right until
    it made some recommend tasks while installing. It could'nt start the http server at there. I completed the installation. After then when i connect to the internet and try to start http server it starts. But when i do not connect to the internet it gives an error like apache.exe couldn't start on executing ApacheModuleonsinst.dll. I want to learn what causes to this problem.

    pparkko wrote:
    With this type of behaviour, you always need to find out the real error.
    Try opening a command prompt (cmd) and running the command from the command line.
    Then you can see what is going wrong.I have a question, I just upgraded our test 11i database (9i) to 10g (10.2), as a part of that upgraded forms, reports, graphics to patchset 18. Now planning to install 10giAS on appsTier on which forms, Apache and discoverer running. If I install 10giAS in differnet home, how can I get that in to appsTier?, does it mean adapcctl script no longer be used to start webservices?. I haven’t done this before, if my question is stupid, please ignore :).

  • How to configure Oracle HTTP server

    Hi, I installed APEX 3.0 in Oracle 10.2.0.2 database. I installed HTTP server from Oracle 10.2.0 database companion CD. The problem is I am not sure which conf file I need to modify as in the installation document, it only shows steps for how to configure HTTP server 9.0.3/11g/Oracle Application Server 10g. Anybody knows where to get the right doc? Thanks.

    Hi,
    Configure the Oracle HTTP Server (OHS) from the companion CD is the same for other OHS (apart from OHS 9.x where it uses wdbsvr.app).
    So just follow the install guide from
    4.4 About Configuring Oracle HTTP Server
    http://download-west.oracle.com/docs/cd/B32472_01/doc/install.300/b32468/post_inst.htm#BHAGICFJ
    Regards,
    Sunny Patel.

  • Can Oracle HTTP Server 2.0 be installed with Oracle App Server 10.1.3.4.0?

    Or I guess a related question is what version of apache comes with the latest App Server Patch Set (10.1.3.4.0)?
    We are running OAS 10.1.3.3.x and we are having issues with URLs that end in a number but which have query parameters at the end.
    E.g. http://<stuff_here>/1?type=table&format=html
    The URLs come from REST-ful GET operations. It seems like the HTTP server just ignores the query parameters completely.
    When we run against stand-alone OC4J which includes an embedded HTTP server, such URLs work as expected.
    We are hoping that perhaps the latest patch set for the full Oracle Application Server 10g will overcome this issue.
    But if we need to move to a later Oracle HTTP Server (like the one that comes as an option for the Oracle 11g database installation) we would be willing to do so.
    Comments related to this are welcome.
    Thanks
    Jim

    Hi,
    Does anyone have experiece getting Apex working with secured BI publisher?
    The error I am getting when PDF printing from Apex to BI pub is:
    "ORA-20001: The printing engine could not be reached because either the URL specified is incorrect or a proxy URL needs to be specified.
    Error failed
    OK "
    Please note, network services in 11G are already configured; thus I am able to print from Apex to non-secured BI pub.
    Thanks,
    Jed

  • Companion CDs for 64-bit Oracle HTTP Server for AIX5L(64 bit) required.

    I need Companion CDs for 64 bit Oracle HTTP Server for AIX5L(64 bit).
    I tried to install using
    as_ibm_aix_companion_101300_disk1.cpio & as_ibm_aix_companion_101300_disk2.cpio
    but when i checked the files present in <Oracle_Home>/ohs/lib , they are of 32-bit.
    Also i tried with Oracle 10.1.2.0.2 but still the server is installed as 32-bit.
    Is 64-bit Oracle HTTP Server supported on AIX5L(64 bit) ?
    If yes, then from where can i download the CDs?
    Any suggestions will be appreciated.

    Greetings,
    Try this link:
    http://www.oracle.com/technology/software/products/database/oracle10g/htdocs/10201aixsoft.html
    Regards,
    Bill Chadbourne

  • Re-install of Oracle HTTP Server in a configured environment

    OS: Oracle Enterprise Linux 5.5 64 bit
    Hyperion: v11.1.2.0
    Web Server1: SharedServices, Calc, EAS, APS, Planning installed and configured. They are working from URL and clients.
    We ran into issues with Workspace configuration. If we have to re-install Oracle HTTP server on the web server, will it affect the current configuration adversely? In other words, do we need to start all over again?
    Has anyone else run into similar or related issues? How were you able to resolve it?
    This is related to another thread I have on this forum. It is related but these are different issues and we are trying to see how we can proceed while waiting for support to respond.
    Configuration of Workspace failed
    Any thoughts/ suggestions?
    Thanks,

    The errors I see in the config log are:
    [server1]$ grep Error configtool.log.bak15
    [2010-12-01T16:44:40.106-08:00] [EPMCFG] [ERROR] [EPMCFG-05364] [oracle.EPMCFG] [tid: 19] [ecid: 0000Im^YOPRCOtmMwqIbMG1CxihS00000A,0] [SRC_CLASS: com.hyperion.foundation.config.WebServerConfigurationTaskProcessor] Error in web server configuring:[[
    [2010-12-01T16:51:34.658-08:00] [EPMCFG] [ERROR] [EPMCFG-05364] [oracle.EPMCFG] [tid: 17] [ecid: 0000Im^ZxIYCOtmMwqIbMG1CxinO000008,0] [SRC_CLASS: com.hyperion.foundation.config.WebServerConfigurationTaskProcessor] Error in web server configuring:[[
    [server1]$ grep ERROR configtool.log.bak15
    [2010-12-01T16:44:25.648-08:00] [EPMCFG] [ERROR] [EPMCFG-02151] [oracle.EPMCFG] [tid: 19] [ecid: 0000Im^YOPRCOtmMwqIbMG1CxihS00000A,0] [SRC_CLASS: com.hyperion.hit.fusion.FusionComponent] oracleComponent is null. Component will not be provisioned.
    [2010-12-01T16:44:40.106-08:00] [EPMCFG] [ERROR] [EPMCFG-07236] [oracle.EPMCFG] [tid: 19] [ecid: 0000Im^YOPRCOtmMwqIbMG1CxihS00000A,0] [SRC_CLASS: com.hyperion.cis.config.ant.apache2.OHS2Configurator] /apps/Oracle/Middleware/user_projects/epmsystem1/httpConfig/ohs/config/OHS/ohs_component/httpd.conf wasnt found. OHS wasnt configured successfully, see oraInventory logs for more details"
    [2010-12-01T16:44:40.106-08:00] [EPMCFG] [ERROR] [EPMCFG-05364] [oracle.EPMCFG] [tid: 19] [ecid: 0000Im^YOPRCOtmMwqIbMG1CxihS00000A,0] [SRC_CLASS: com.hyperion.foundation.config.WebServerConfigurationTaskProcessor] Error in web server configuring:[[
    [2010-12-01T16:51:18.900-08:00] [EPMCFG] [ERROR] [EPMCFG-02151] [oracle.EPMCFG] [tid: 17] [ecid: 0000Im^ZxIYCOtmMwqIbMG1CxinO000008,0] [SRC_CLASS: com.hyperion.hit.fusion.FusionComponent] oracleComponent is null. Component will not be provisioned.
    [2010-12-01T16:51:34.658-08:00] [EPMCFG] [ERROR] [EPMCFG-07236] [oracle.EPMCFG] [tid: 17] [ecid: 0000Im^ZxIYCOtmMwqIbMG1CxinO000008,0] [SRC_CLASS: com.hyperion.cis.config.ant.apache2.OHS2Configurator] /apps/Oracle/Middleware/user_projects/epmsystem1/httpConfig/ohs/config/OHS/ohs_component/httpd.conf wasnt found. OHS wasnt configured successfully, see oraInventory logs for more details"
    [2010-12-01T16:51:34.658-08:00] [EPMCFG] [ERROR] [EPMCFG-05364] [oracle.EPMCFG] [tid: 17] [ecid: 0000Im^ZxIYCOtmMwqIbMG1CxinO000008,0] [SRC_CLASS: com.hyperion.foundation.config.WebServerConfigurationTaskProcessor] Error in web server configuring:[[                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • How to integrate Oracle Http Server with Weblogic

    Weblogic supports Apache web server 2.0 and 2.2 to be a proxy server. Oracle Http Server (OHS) is based on Apache 2.0. I am trying to configure Weblogic to use OHS that comes with OAS install as proxy on Linux environment. I am unable to get the WLS plugin for Apache to work with OHS. When I tried to start the OHS, I got the following errors:
    /oracle/product/10.1.3.1/OracleAS_3/Apache/Apache/bin/apachectl startssl: execing httpd
    Syntax error on line 1125 of /oracle/product/10.1.3.1/OracleAS_3/Apache/Apache/conf/httpd.conf:
    Cannot load /oracle/product/10.1.3.1/OracleAS_3/Apache/Apache/libexec/mod_wl128_20.so into server: /oracle/product/10.1.3.1/OracleAS_3/Apache/Apache/libexec/mod_wl128_20.so: undefined symbol: apr_pool_cleanup_null
    I checked the library, and I found in several places, such as /usr/lib.
    The following is the configuration that I put in http.conf file:
    <IfModule mod_weblogic.c>
    WebLogicCluster 127.0.0.1:7001
    MatchExpression /AIP
    </IfModule>
    <Location /weblogic>
    SetHandler weblogic-handler
    WebLogicCluster 127.0.0.1:7001
    DebugConfigInfo ON
    PathTrim /weblogic
    </Location>
    Anybody knows how to fix this?
    Thanks.

    You're right: Weblogic supports Apache web server 2.0 and 2.2 to be a proxy server but you are using Oracle Application Server 10.1.3.1.0 which is based on Apache *1.3* as you can read in "Oracle® HTTP Server Administrator's Guide"
    10g (10.1.3.1.0) - Part Number B28948-01 - 1.1 Oracle HTTP Server Features, right under "Based on Apache - HTTP v1.1 Support" at
    http://download.oracle.com/docs/cd/B31017_01/web.1013/b28948/overview.htm#i1008837.
    As far as I know, the only OHS based on Apache *2.0* is available as a standalone release: "Oracle HTTP Server (Apache 2.0) (10.1.3.3.0) for Linux x86" - 32bit. You can download it from http://www.oracle.com/technology/software/products/database/oracle11g/111060_linuxsoft.html (as_101330_apache2_lnx.zip).
    I've tested it successfully.
    Edited by: Virgil on Jan 15, 2009 3:08 AM

  • Virtual Directory Change from Oracle HTTP Server to Embedded PL/SQL Gateway

    We finally upgraded from htmldb 1.6 to ApEx 3.1.2 late last year. This was in conjunction with setting up a new server and installing Oracle 11g DB, while our production DB is still 10g. During this install, I opted for the Embedded PL/SQL Gateway, whereas our htmldb is running with the Oracle HTTP Server.
    During the conversion of one of our applications I learned that Virtual Directory references to #IMAGE_PREFIX# are no longer valid for custom CSS so I had to change an entry in the page templates that I'm using to use #WORKSPACE_IMAGES#. Now I am importing another application from our htmldb 1.6 environment to our ApEx 3.1.2 environment, and I have a new problem that I think is related.
    In this application we have been uploading report files for outside users to be able to download at their convenience. I think the upload is working OK, but when I try to download the report file I get the following:
    Not found
    The requested URL /apex/IMR.ofile was not found on this server.
    The download is accomplished with a link on an SQL Report region. The Column Link info is:
    Link Text = <img src="#IMAGE_PREFIX#edit_big.gif" border="0" alt="Icon 1">
    Target = URL
    URL = #OWNER#.ofile?p_file=#VIEW_REPORT#&v_auth=&APP_USER.
    When I change the Link Text to <img src="#WORKSPACE_IMAGES#edit_big.gif" border="0" alt="Icon 1"> I lose the Edit Icon image. However, what I'm really concerned about is the URL not found error
    Now, maybe I'm barking up the wrong tree, so if the problem isn't related to virtual directories, which tree should I be barking up?
    Any suggestion?
    Thanks,
    Gregory

    Is the IMR.ofile a custom package for downloading files? If so, you might need to add it to the wwv_flow_epg_include_mod_local function.
    I am not certain how this function also plays into the embedded pl/sql gateway, but do know it would affect this running through Oracle HTTP server when configured with the before proc.
    With the embedded gateway it may very well be that you need to add this package into the ACL for outside availability.

Maybe you are looking for

  • Logic 7 songs sound different in Logic 8 - why?

    i am not guessing. bounce, phase invert, mix the two, and it is really strange. what i've seen quickly, that the adaptive limiter plugin has changed a little. setting a -0.1dB ceiling in 7 causes -0.1dB peak, in 8, it will be 0. but there must be som

  • Create datasource issue with Planning 9.3.1

    The plan is to upgrade to 9.3.3 so will need 9.3.1 first. I have installed 9.3.1 Planning on win 2003 server and finished the configuration steps as well. All my hyperion planning databases are on a Oracle RAC system 11g installed on Linux. The indiv

  • Error code starting DB12/DB13 amongst others

    Hi, I am getting the following error message on one of our production systems, for example when I start DB12 or DB13: Name and Server     : PRD - <name> DBMRFC Function     : DBM_GETF Command             : BACKHIST Error               : DBM Error Ret

  • Can't open iPhoto library on External HD

    Saved photo library on iMac (iPhoto '08 version 7.1.5) to external HD (Mac OS Extended - journaled), it shows 50GB of photos saved, which is the correct size. connected ext HD to MacBook Pro (Mavericks) running iPhoto 9.5.1. Opened iPhoto while holdi

  • Hp pavilion dv6000 headfones audio problem

    Hi I have a hp pavilion dv6000 with AMD processor.I have degraded it  from vista to XP.The audio seems to be working fine with the speakers but when i plug in headfones even then the audio is out in the speakers. Can someone please help me with this