Ubuntu – Oracle 12C In Ubuntu 14.04 : HOW Resolve [INS-32012] Unable to create directory: /u01/app/oracle

14.04oracle

I was following this Site for installing Oracle 12c on my Ubuntu 14.04.But I was stuck in the middle of the installation for the following step:

enter image description here

enter image description here

I used following commands to get permission but still didn't worked:

sudo chown -R oracle:oinstall /u01
chown -Rf oracle:dba /u01/app/oracle/product/12.1.0/dbhome_1
chown -Rf oracle:dba /u01/app/oracle

How can i solve this problem.please help.Thanks

Best Answer

i think i found the answer. check the user account permissions the new oracle user create i guess will be drwx------. 1 oracle oinstall 142 Mar 10 03:16 oracle

which means only the owner has read, write, and execute permissions.

changing that will solve the issue not recommended though but this should fix the issue

chown 766 oracle

Related Question