Posts

Showing posts from 2015

Oracle HTTP Server 12.2.1.3 Silent mode Installation (Oracle Linux 7)

Image
The objective of this post is to install the Oracle HTTP Server 12.2.1 on Oracle Linux platform. The prerequisites for this task JDK 1.8 and Oracle infrastructure 12.2.1 required if you wish to install Collocated OHS with WebLogic. You could be selective while installing OHS there are two options: Collocated OHS [WebLogic required] Standalone OHS [independ of WebLogic] Oracle HTTP Server silent mode installation Preparation for OHS 12.2.1 installation You can Download the zip V78157-01.zip from https://edelivery.oracle.com/ Now unzip the downloaded zip file which contains a bin file. Copy the bin file at the target installation machine (any location). Best practice is to use shared folder location which can be reusable for other machines as well. Oracle Linux 7 vagrant box which had some of the libraries and some of them were missing. My first run was failed with the following: OHS 12.2.1 installation errors: System libraries missing Here the fix is simpl...

Oracle HTTP Server 12.2.1 Silent mode Installation (Oracle Linux 7)

Image
The objective of this post is to install the Oracle HTTP Server 12.2.1 OHS on Oracle Linux OL of Redhat platform. The prerequisites for this task JDK 1.8 and Oracle infrastructure 12.2.1 required if you wish to install Collocated OHS with WebLogic. You could be selective while installing OHS there are two options: Collocated OHS [WebLogic required] Standalone OHS [independ of WebLogic] Oracle HTTP Server 12.2.x  installation in silent mode Preparation for OHS 12.2.1 installation You can Download the zip V78157-01.zip from https://edelivery.oracle.com/ Now unzip the downloaded zip file which contains a bin file. Copy the bin file at the target installation machine (any location). Best practice is to use shared folder location which can be reusable for other machines as well. Issue: libstdc++devel Not found. Failed Oracle Linux 7 vagrant box which had some of the libraries and some of them were missing. My first run was failed with the following: OHS 12.2...

Oracle 12c database installation on CentOS 6.5 Vagrant

Image
Project Oracle12c database As a non-Oracle DBA having minimum knowledge, started working on this project for installation of Oracle 12c Database on my personal laptop which have Windows 8.1 platform. Using this automation with Vagrant and Puppet provisioning on CentOS box it would be fantastic guest and on top of it running the Oracle 12c database will be hosted that's simple learning goal for today. Virtual box requirements for Oracle 12c Database Assume that latest version of Vagrant installed on your machine. I'm running on Vagrant 1.7.1. And also expecting Oracle VirtualBox installed on your machine. First get the Oracle database binaries from OTN Select Enterprise Edition or Standard Edition Database download link  [This may change for next version] Selecting Oracle 12c Database download from OTN Get the Vagrant setup from ora12base with clone command : git clone https://github.com/dgapitts/ora12base git clone command for ora12base Change th...

Integrating Oracle HTTP server with WebLogic 11g/12c

Image
Integrating Oracle HTTP server with WebLogic 11g This post continues a series of learning OHS 11g installation and configurations. You can visit our previous blog posts for the following steps: Step 1:  Install WebLogic 10.3.6.0 on Vagrant Ubuntu  [Done!] Step 2: Install Oracle HTTP server Step 3: Edit mod_wl_ohs.conf which is located at /home/pavanbsd/ohs/Middleware/Oracle_WT1/instances/instance1/config/OHS/ohs1 Here I want to access the WebLogic admin console through OHS server proxy plugin. So I had given Adminserver details in mod_wl_ohs.conf file as shown the below. LoadModule weblogic_module "${ORACLE_HOME}/ohs/modules/mod_wl_ohs.so" WebLogicHost myweb1.vybhavatechnologies.com WebLogicPort 7001 # Admin Server and EM SetHandler weblogic-handler WebLogicHost myweb1.vybhavatechnologies.com WeblogicPort 7001 SetHandler weblogic-handler WebLogicHost myweb1.vybhavatechnologies.com WeblogicPort 7001 SetHandler weblogic-handler WebLogicHost myweb1.vyb...

Installing Oracle HTTP server on Ubuntu

Image
Installing Oracle HTTP server on Ubuntu Step 1: We need to download the Oracle webtier from the following location Download Link Step 2:   The Downloaded zip file need to be extracted. Step 3:  libaio packages should be installed on ubuntu Step 4. kernel parameters needs to be updated as below  Open  vi /etc/sysct.conf   and append the following data at the end of the file fs.aio-max-nr=1048576 fs.file-max=6815744 kernel.shmall=2097152 kernel.shmmni=4096 kernel.sem=250 32000 100 128 net.ipv4.ip_local_port_range=9000 65500 net.core.rmem_default=262144 net.core.rmem_max=4194304 net.core.wmem_default=262144 net.core.wmem_max=1048586 kernel.shmmax=2147483648 (this is system RAM in bytes) Step 5: Because Ubuntu is not in the Oracle certification matrix so we can use ignore option as show below: Run /runInstaller -jreLoc /path/to/jdk -ignoreSysPrereqs from Disk1 folder. And click  on  next.     ...