Posts

Showing posts with the label Configure OHS

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