Reputation: 43
I'm trying to install Oracle 12c database on Ubuntu 17.04, but I get error ORA-27104:
My /etc/sysctl.conf
file:
#Added for fresh Oracle 12cR1 Installation
kernel.sem = 250 32000 100 128
# Assumes all of a 5120MB RAM is allocated, using 4K pages
kernel.shmall=8388608 # (=32*1024*1024*1024 / 4096) - 4096 is page size
# Assumes half of a 5120MB RAM is allocated, in bytes
kernel.shmmax=34359738368 # (=32*1024*1024*1024),
kernel.shmmni = 4096
kernel.panic_on_oops = 1
fs.file-max = 6815744
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 = 1048576
fs.aio-max-nr = 1048576
Any idea what may help to fix this?
Upvotes: 1
Views: 902
Reputation: 72
If you refer the Oracle docs you would see that Oracle doesnt support Ubuntu, I used a hack around as mentioned in the Install Oracle 12c in Ubuntu 16.04 . The document and the script is originally written for installation of Oracle 12c in Ubuntu 16.04.The script had to be tweaked a bit to install Oracle 12c(version 12.1.0.2.0) in Ubuntu 16.04.2.
I downloaded the script mandela.sh and made the below 2 changes to script and followed the instructions as is in Install Oracle 12c in Ubuntu 16.04 .
ver=16.04
to ver=16.04.2
if [ "$VERCHECK" != "Description: Ubuntu 16.04 LTS" ]; then
to if [ "$VERCHECK" != "Description: Ubuntu 16.04.02 LTS" ]; then
Make sure in step 2 give the Description as is given in the output of command
lsb_release -a
Try your luck on Ubuntu 17.04 with above steps.
Upvotes: 0