Posts

Showing posts from September, 2015

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.     ...