Installation of the VeriSign digital certification in Oracle HTTP Server

I am not obtaining to generate to the pair of keys and the CSR in Oracle HTTP Server, will have some tip I is thankful.
Thanks
Leandro

Hi Leandro,
Here are some steps to setup digital certificates into Oracle HTTP Server for Unix.
1. The temporary working directory is /u01/tmp/myssl.
2. The contents of <9iAS_HOME>/Apache/open_ssl/bin have been copied to the
temporary working directory created in Assumption #1.
3. SSL file names are priv.key (private key), certreq.csr (certificate request),
and cert.crt (SSL certificate). The actual SSL certificate file could be
named other than 'cert.crt'.
4. By default, SSL is configured using port 443, which requires ROOT access to
start the web listener.
If you want to change this from the default port, you will need to change
the following two parameters in the httpd.conf file to an unused port number:
Listen 443
<VirtualHost default:443>
5. All necessary UNIX environment variables are set correctly for your Oracle
product before implementing these procedures.
6. User must be familiar with UNIX concepts like shell navigation, UNIX
environments, file manipulation/search, file copy/backups, etc.
How to Request and Configure an SSL Certificate for Oracle9i Application Server
Step-by-Step Instructions:
1. Change your present working directory to the temporary working directory, e.g.,
/u01/tmp/myssl. Ensure the contents of <9iAS_HOME>/Apache/open_ssl/bin have
been copied into this temporary working directory.
2. Copy 5 large files, each at least 250KB, into your temporary working directory.
Suggest looking in any /bin directory for large sized binary files. Execute
the following command to generate the random character file:
     % openssl md5 * > rand.rnd
3. Execute the following command to generate the private key (priv.key):
% openssl genrsa -rand rand.rnd -des3 1024 > priv.key
     - when prompted, enter a "PEM pass phrase" password
     - re-enter password when prompted to verify password
     -- remember the pass phrase password you entered
     - this command generates the priv.key file and associated pass phrase
     - set permissions on the priv.key file to prevent unauthorized editing
     % chmod 400 priv.key
     - backup the priv.key file to a secure location
NOTE
The PEM pass phrase must be at least 4 characters in length. Remember this
pass phrase, you will be prompted to enter it in the next step and each
time you start up the Oracle HTTP Server (OHS) in SSL mode.
Optionally, you can unencrypt the value of the private key, so that you
will not be prompted for the PEM pass phrase every time you start up OHS
in SSL mode.
To unencrypt the private key, execute the following two commands (Note:
ensure file permissions set to r+w):
     % cp priv.key priv.key.bak
     % openssl rsa -in priv.key.bak -out priv.key
- the demo certificate shipped with Oracle9iAS does not require a pass
phrase to start OHS in SSL mode.
- on UNIX, to generate the certificate request and start OHS in SSL mode,
the pass phrase must be entered, unless you executed the above steps
to unencrypt.
- on Windows NT/2000, if a certificate is used that has a pass phrase,
the OHS will hang; therefore, on Windows NT/2000, you must execute
the steps to unencrypt.
4. Execute the following command to generate an SSL certificate request
(certreq.csr) based on your private key.
     % openssl req -new -key priv.key -out certreq.csr -config openssl.cnf
     - when prompted, enter the "PEM pass phrase" set when the private key
was created.
     - when prompted, enter the requested fields that make up the
Distinguished Name.
     -- each entry must be valid information, i.e., email, state, location, etc.
     - when prompted for the "Common Name", you MUST enter the fully
qualified name which will be accessed via client browsers; e.g.,
if clients will use:
https://mysite.domain.com
     -- then, you must enter mysite.domain.com as the "Common Name"
     - the requested 'extra' attributes, i.e., "challenge password" and
"optional company name", are OPTIONAL; just hit ENTER to use NULL values.
5. You should now have the private key and certificate request files (priv.key
and certreq.csr) in your temporary working directory.
NOTE
At this point, you can use your certificate request file 'certreq.csr' to
order a valid SSL certificate from any CA-vendor, e.g., Verisign.
After you receive your SSL certificate, skip to Step #6 for instructions
on how to deploy your SSL files.
OPTIONAL
You can start 9iAS in SSL mode (see Step #12) and test the pre-installed demo
certificate and private key included for testing purposes.
It is a good idea to test to be sure the Oracle HTTP Server SSL mode works
successfully before deploying your new SSL certificate. To try these demo
files, access the 9iAS index page in a browser using the HTTPS protocol and
the appropriate SSL Listen port. URL format:
https://myhost.domain.com:<ssl_port>
The user will see a Security Alert (IE), or New Site Certificate (Netscape)
warning message, click Continue/Next to accept.
OPTIONAL
To create a self-signed certificate, execute the following commands:
(csh) % setenv RANDFILE rand.rnd
<sh or ksh> % export RANDFILE=rand.rnd
% openssl x509 -req -days 30 -in certreq.csr -signkey priv.key > tempcert.crt
- when prompted, enter the "PEM pass phrase" set when the private key was created.
- this command generates a temporary self-signed certificate file 'tempcert.crt'
valid for 30 days, which can be used while awaiting a valid SSL certificate
purchased from an authorized CA-vendor.
- if this option is used, after generating the 'tempcert.crt' file, skip to
Step #6 for instructions on how to deploy your SSL files.
OPTIONAL
These steps are specifically for requesting a TRIAL certificate from the
CA-vendor Verisign.
- Go to www.verisign.com and click on "Free Guides and Trials" link and
follow instructions to request a "Free Trial SSL ID". During this process,
you will be asked to provide certificate request information.
- Open the 'certreq.csr' file using your text editor of choice.
- Starting with "-----BEGIN NEW CERTIFICATE REQUEST-----" copy all lines
including the BEGIN and END of certificate lines.
- Paste this copied data into the Verisign page where requested and continue.
- You will see the Verisign web site decode your certificate request
information. This decoded information is presented to you to verify it is
correct. If it is, then continue with the process.
- You will be presented with another set of questions from Verisign. Be sure
to answer with the correct email address, as this address will be used to
send your SSL certificate.
- After you answer all these questions, you will be sent a TRIAL 14-day
SSL certificate via email.
- WARNING! You must follow this step carefully, you cannot copy and paste
information from an email to a new text file. After you get your TRIAL
certificate, save the entire email message to a text file. Open this file
using your text editor of choice. You will see the email address header
information and the line:
-----BEGIN CERTIFICATE-----
- Delete all text that appears before the -----BEGIN CERTIFICATE----- line.
The modified file should contain only certificate information. After you
delete the email header, save this text file inside your temporary directory
with the filename 'trialcert.crt'.
6. Now you are ready to configure Oracle9i Application Server (9iAS) with your
SSL certificate files.
7. Back up your existing <9iAS_HOME>/Apache/Apache/conf/httpd.conf file.
8. Open the httpd.conf file with your text editor of choice.
9. Edit the following httpd.conf directives to use your generated private key
and SSL certificate file, which could be the filename for either the
temporary self-signed certificate, the TRIAL test certificate, or the
purchased valid certificate. The information following the # symbol are
comments.
NOTE
The directory of the SSL files (private key and certificate file)
can reside in any location you choose. The temporary working
directory will continue to be referenced in these procedure steps.
# use the appropriate (i.e., valid, temporary, or trial) certificate filename
SSLCertificateFile /u01/tmp/myssl/tempcert.crt
#private key from Step #4 above:
SSLCertificateKeyFile /u01/tmp/myssl/priv.key
10. Save your modified httpd.conf and exit the text editor.
11. Log in as authorized user (if default ports 80 and 443 are used, ROOT user
must execute commands in next step).
12. Execute the following command to stop, then start Apache in SSL mode
(ensure proper UNIX environments are set; else, execute command from
<9iAS_HOME>/Apache/Apache/bin.)
For Oracle8iAS 1.x:
% httpdsctl stop
% httpdsctl startssl
For Oracle9iAS 1.0.2.x:
% apachectl stop
% apachectl startssl
- when prompted, enter the "pass phrase" created in Step #3.
-- not required if you unencrypted the private key file
- when the Oracle HTTP Server starts successfully in SSL mode, access the
9iAS index page in a browser using the HTTPS protocol and the appropriate
SSL Listen port. URL format:
https://myhost.domain.com:<ssl_port>
- if using a temporary self-signed or TRIAL test certificate, the user will
see a Security Alert (IE), or New Site Certificate (Netscape) warning message,
click Continue/Next to accept.
====================
I hope this help !!
Ilan Salviano

Similar Messages

  • Loading the third party modules in oracle http server

    Hi ,
    I installed a software and after installing it we will get one so file (ds-wac-apache2.2.so). I want to load that module (ds-wac-apache2.2.so file name) in oracle http server.
    I used the LoadModule directive but it doesnt work.
    Can anyone help me regarding these?

    Hi,
    My third party software was installed in the below folder,
    /home/oracle/Symphony/WAM/WebEnforcementAgent/
    and i tried to load the module by using the command LoadModule in httpd.conf which is located in the $ORACLE_INSTANCE/config/OHS/ohs
    LoadModule ds_wac_module "/home/oracle/Symphony/WAM/WebEnforcementAgent/ds-wac-apache2.2.so"
    after adding the above line in httpd.conf below url is not working.
    http://(ipaddress of oracle machine):7777/
    regards,
    suresh G

  • What is the realtion Fusion Middleware and Oracle HTTP Server?

    Hi,
    Can someone explain me why is WebLogic necessary to administrate graohically the Oracle 11g HTTP Server?
    What means what I found in the documentation:
    "To display Fusion Middleware Control, you enter the Fusion Middleware Control
    URL, which includes the name of the WebL
    ogic Administration Server host and the
    port number assigned to
    Fusion Middleware Control during the installation"
    Does this means that Weblogic need to be installed and configured?
    Kind regards.

    Hi,
    If you want to control OHS via GUI then deploying Oracle Enterprise Manager FMW Control is the only option.
    And for the same you need to have weblogic, bcoz  OEM FMW control would be deployed as an application on the weblogic server.
    If you are going to use other products in FMW stack (Example: Forms and reports services 11g), then complete administration would be done through FMW control.
    Monitoring and administering your weblogic clusters, ohs, webcache everything can be done though single interface.
    Please do not go with assumption that only from GUI all these things can be done, command line is the best thing and the option is there.
    Consider this only as an enhancement.
    Regards,
    Nithin R

  • Need to download - Oracle HTTP Server 10.1.3.3 (based on Apache 2.2)

    Hi,
    I need to install Siebel Application on Linux-64 bit, for which I have to use Oracle HTTP server as my web server.
    The system requirements guide for Siebel mentions that I will need - Oracle HTTP Server 10.1.3.3 (based on Apache Web Server v2.2 or above).
    But I am unable to find Oracle HTTP based on Apache Version 2.2 or above, instead I am able to find Oracle HTTP 10.1.3.3 based on Apache 1.3.
    Can anyone direct me to the appropriate place to find Oracle HTTP Server 10.1.3.3 (based on Apache Web Server v2.2 or above)

    http://www.oracle.com/technology/software/products/ias/htdocs/101310.html

  • Oracle HTTP Server Support Dates

    What are the lifetime support dates for Oracle HTTP Server 10gR3 ?
    Thanks, Richard.

    Yes, Oracle HTTP Server will communicate to the J2EE container (OC4J) via mod_oc4J. It is completly supported starting 9.0.2, out of box.
    Regards
    Pavna Jain
    Oracle9iAS Product Management Team

  • 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 install Soap on the (Apache) Oracle HTTP Server

    Hi,
    Does anyone know how to install SOAP on the Oracle HTTP Server? I downloaded a soap version (it seems that the standard version comes without SOAP) from the xml.apache.org site and followed the installation instructions as far as I could (only Tomcat is described). However, no 'soaping'!!! Maybe I'm overlooking something because I cannot imagine that it should be difficult.
    Thanks in advance!
    Hans

    Hans, the SOAP implementation is part of OC4J. You get it out of the box. Check out how to use the out-of-the-box implementation in the tutorials on Web services with Oracle9i JDeveloper at:
    http://otn.oracle.com/tech/webservices/htdocs/series/content.html
    These tutorials/samples use the implementation of SOAP/WSDL that Oracle calls J2EE Web Services and this is the long term direction of Oracle's Web services implementation. This implementation is what Oracle will be evolving to Sun's Java Web Services Developer Pack as it finalizes into J2EE 1.4.
    If you want to use Oracle/Apache SOAP, this too is included in OC4J but its support is being deprecated in future releases of Oracle9iAS in favour of the J2EE Web Services implementation. To find it, check out the OC4J/soap/webapps/ directory for the soap.ear file (it is in a slightly different spot if you are using the full Oracle9iAS R2 but still within the soap directory structure. Simply add <application name="soap" path="../../../soap/webapps/soap.ear" auto-start="true"/> to your OC4J server.xml and <web-app application="soap" name="soap" root="/soap" /> to your OC4J http-web-site.xml, re-start and away you go.
    Finally, just to be sure, SOAP support in Oracle9iAS did not appear until 1.0.2.2.x and higher. If using 1.0.2.1 or less, you are correct, there is no SOAP support.
    Mike.
    Most folks that try out the J2EE Web Services find it is pretty easy to use so

  • Installing Oracle HTTP Server WITHOUT Universal Installer?

    On my computer (Win XP, DB 10.1.0.4) the Universal Installer that comes with the Companion CD still fails at startup. So I installed HTML DB from the htmldb_2.0.zip file.
    But what about the HTTP Server? How can install it without using the OUI?
    The response file from the Companion CD offers only these two choices:
    - Oracle HTML DB and Oracle HTTP Server
    - Oracle HTML DB only
    I have to admit that I don't really fancy the idea of installing HTML DB again via response file...
    Any ideas?

    Sabine,
    Do you use an intel pentium 4?Yes. Do you think that bug is still around?No, I was confusing it because just recently I installed 8.1.7 on my XP machine and ran into that bug. It shouldn't affect a 10.x install.
    What is the error message you get? Or does it just
    crash?The windows error message "The oui.exe found a
    problem and need to be closed." ("oui.exe hat ein
    Problem festgestellt und muss beendet werden") Tough. Not much information.
    Do you have anything special set up on your machine, firewall, cluster, etc.? How much RAM?
    Sometimes the setup.exe didn't work for me. There is another oui.exe in the "install" subdirectory. Please try this one.
    If you don't get any further I would suggest to open an iTar with Oracle Support.
    If you had more specific error messages perhaps we can find something.
    Please look in c:\programme\oracle\inventory\logs whether you can find more information.
    ~Dietmar.

  • Unable to Install the Common Components and Oracle HTTP Server

    I am installing the Hyperion 11.1.2.1.0 in Linux 64 bit server..
    I have done the downloading the files from 1to 7 for Foundation Services and Static client with all Essbase.
    I have unziped the all into one folder and done the installation , but i am not able to install the Oracle HTTP serve and common components.even If i tired to configure the system showing the Below error...
    *Launching the Hyperion Configuration Utility, please wait...*
    *Running preconfig checks...*
    *Running EPM_ORACLE_HOME check...*
    *EPM_ORACLE_HOME environment variable value: /fcs/Oracle_Home/Middleware/EPMSystem11R1*
    *JAVA_HOME environment variable value: /fcs/Oracle_Home/Middleware/EPMSystem11R1/../jdk160_21*
    *EPM_ORACLE_HOME check succeeded*
    *Running .oracle.products check... .oracle.products check succeeded*
    *Running Jars manifest check...*
    *Time spent for manifests parsing: 606 ms*
    *Maximum jars depth achieved: 6, while restriction was: unrestricted*
    *Parsed 419 manifests*
    *Total jars and classpath entries encountered: 419*
    *Total not-existing referenced classpath entries count: 62*
    *Total classpath elements to check: 59*
    *ERROR: /fcs/Oracle_Home/Middleware/oracle_common/modules/oracle.jsf_1.2.9/glassfish.jstl_1.2.0.1.jar not exists; file depth: 2; referenced from /fcs/Oracle_Home/Middleware/EPMSystem11R1/common/jlib/11.1.2.0/epm_j2se.jar referenced from /fcs/Oracle_Home/Middleware/EPMSystem11R1/common/config/11.1.2.0/configtool.jar*
    *ERROR: /fcs/Oracle_Home/Middleware/oracle_common/jlib/share.jar not exists; file depth: 1; referenced from /fcs/Oracle_Home/Middleware/EPMSystem11R1/common/config/11.1.2.0/configtool.jar*
    *ERROR: /fcs/Oracle_Home/Middleware/oracle_common/modules/oracle.http_client_11.1.1.jar not exists; file depth: 2; referenced from /fcs/Oracle_Home/Middleware/EPMSystem11R1/common/jlib/11.1.2.0/epm_soa.jar referenced from /fcs/Oracle_Home/Middleware/EPMSystem11R1/common/config/11.1.2.0/configtool.jar*
    *ERROR: /fcs/Oracle_Home/Middleware/oracle_common/modules/oracle.dms_11.1.1/dms.jar not exists; file depth: 2; referenced from /fcs/Oracle_Home/Middleware/EPMSystem11R1/common/jlib/11.1.2.0/epm_j2se.jar referenced from /fcs/Oracle_Home/Middleware/EPMSystem11R1/common/config/11.1.2.0/configtool.jar*
    *ERROR: /fcs/Oracle_Home/Middleware/oracle_common/modules/velocity-dep-1.4.jar not exists; file depth: 1; referenced from /fcs/Oracle_Home/Middleware/EPMSystem11R1/common/config/11.1.2.0/configtool.jar*
    *ERROR: /fcs/Oracle_Home/Middleware/oracle_common/modules/oracle.jmx_11.1.1/jmxspi.jar not exists; file depth: 2; referenced from /fcs/Oracle_Home/Middleware/EPMSystem11R1/common/jlib/11.1.2.0/epm_j2se.jar referenced from /fcs/Oracle_Home/Middleware/EPMSystem11R1/common/config/11.1.2.0/configtool.jar*
    *ERROR: /fcs/Oracle_Home/Middleware/oracle_common/modules/org.apache.commons.beanutils_1.6.jar not exists; file depth: 1; referenced from /fcs/Oracle_Home/Middleware/EPMSystem11R1/common/config/11.1.2.0/configtool.jar*
    *ERROR: /fcs/Oracle_Home/Middleware/oracle_common/jlib/jewt4.jar not exists; file depth: 1; referenced from /fcs/Oracle_Home/Middleware/EPMSystem11R1/common/config/11.1.2.0/configtool.jar*
    *ERROR: /fcs/Oracle_Home/Middleware/oracle_common/modules/args4j-2.0.9.jar not exists; file depth: 1; referenced from /fcs/Oracle_Home/Middleware/EPMSystem11R1/common/config/11.1.2.0/configtool.jar*
    *ERROR: /fcs/Oracle_Home/Middleware/oracle_common/modules/oracle.odl_11.1.1/ojdl.jar not exists; file depth: 2; referenced from /fcs/Oracle_Home/Middleware/EPMSystem11R1/common/jlib/11.1.2.0/epm_j2se.jar referenced from /fcs/Oracle_Home/Middleware/EPMSystem11R1/common/config/11.1.2.0/configtool.jar*
    *ERROR: /fcs/Oracle_Home/Middleware/oracle_common/modules/oracle.jmx_11.1.1/jmxframework.jar not exists; file depth: 2; referenced from /fcs/Oracle_Home/Middleware/EPMSystem11R1/common/jlib/11.1.2.0/epm_soa.jar referenced from /fcs/Oracle_Home/Middleware/EPMSystem11R1/common/config/11.1.2.0/configtool.jar*
    *FATAL ERROR: Jars manifest check failed with message "Some referenced jars do not exist"*
    *Exiting in 30 seconds"*
    Thanks in Advance
    Rao.

    It may be worth having a read of the following article on Oracle Support - "Epm 11.1.2 Config Tool Fatal Error: "Some Referenced Jars Do Not Exist" [ID 1175585.1]"
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • 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

  • Installation of  10.1.3 ver of oracle application server :CHOOSING OS VER

    I have to install this software on linux machine
    uname -a
    Linux xyz.domain 2.6.9-67.0.20.ELsmp #1 SMP Wed Jun 18 12:35:02 EDT 2008 x86_64 x86_64 x86_64 GNU/Linux
    as you see it says x86_64 but when i go to edelivery.oracle.com i only see x86 for linux which is for a 32-bit OS
    am i missing a point here ??

    Looks like you have either Intel EM64T or AMD64 processor and 64-bit OS. Oracle Application Server on this platform will run as a 32-bit application. Refer following certification matrix for details:
    http://www.oracle.com/technology/software/products/ias/files/oracle_soa_certification_101310.html#BABIACGE
    So yes you choose "Linux x86" as the platform from the drop down list on eDelivery and download and install the 32-bit version of Oracle Application Server.
    If you had Itanium-2 processor then you can choose "Linux Itanium" as the platform and you will get 64-bit version of Oracle Application Server.
    Thanks
    Shail

  • How to get rid of /j2ee prefix from URL when I use the OC4J via Oracle HTTP server

    In 9iAS 9.0.2 Oracle HTTP Server (OHS) is pre-configured to assign requests to the Home OC4J instance via the URL-prefix "/j2ee"/
    For example, the TEST servlet under OC4J would be passed through OHS using:
    http://urmachine:urApachePort/j2ee/TEST
    whereas in the standlone OC4J version, this URL works:
    http://urmachine:urOC4JPort/TEST
    How to get rid of /j2ee prefix from URL when I use the OC4J via Oracle HTTP Server?

    It is getting the url prefix from mod_oc4j.conf
    under /ora9ias/Apache/Apache/conf
    You can read more on this at
    http://otn.oracle.com/docs/products/ias/doc_library/90200doc_otn/web.902/a92173/confmods.htm#1008977
    -Prasad

  • Can you run Embedded PL/SQL Gateway and Oracle HTTP Server at the same time

    Hi,
    I know this will sound a bit odd but their is a business case for asking this. Can you run APEX via the Embedded PL/SQL Gateway and the Oracle HTTP Server at the same time? Would their be any security/stability/etc issues I'd need to worry about? I know that I'll need to run them on different ports.
    Thank you,
    Martin Giffy D'Souza
    [http://apex-smb.blogspot.com/]

    I think I've done this in the past. Theres no technical reason why you can't do this as far as I know.
    I can't remember if I used different ports or same port.

  • Installing Oracle HTTP Server after installation and configuration.

    Hello,
    I am using EPM 11.1.2.2 and I have installed Essbase, FR, EAS and EIS but not Oracle HTTP server component.
    Is it possible to install it after completion of deployment of whole Hyperion components?
    If I install only HTTP component of foundation service and reconfigure Web server will that work without an issue?
    Or do I need to reinstall all components?
    And, as in EPM 11.1.2.2 for installing Essbase only, Oracle HTTP server is not mandatory, can I skip that component?
    Will that make any impact in future?
    Thanks,

    You can install OHS after you have completed the configuration, install, then configure web server and select OHS.
    It is up to you whether you install and use OHS as the web server, it is not mandatory. If you are using workspace then you will need to configure one of the available web servers.
    Cheers
    John
    http://john-goodwin.blogspot.com/

Maybe you are looking for