Link to home
Start Free TrialLog in
Avatar of nobleit
nobleit

asked on

oracle-installation

While installing oracle 11g in linux after .runInstaller I am seeing this error.
Can you please help me to fix this issue
IND-2011-12-17-02-41-24.png
Avatar of Swadhin Ray
Swadhin Ray
Flag of United States of America image

Set the permission for ORACLE_BASE to 775

for more information on setting the permission please check the below URL:

http://www.mike-devlin.com/oracle/oracle_install.htm

you must change the permissions to /home/oracle/u01/app/oracle/  and its subdirectories to 775

chmod -R /home/oracle/u01/app/oracle/ 775
Avatar of nobleit
nobleit

ASKER

I went to root and gave this

what could be the problem..


[root@IND ~]# chmod -R /home/oracle/u01/app/oracle/ 775
chmod: invalid mode: `/home/oracle/u01/app/oracle/'
Try `chmod --help' for more information.
[root@IND ~]# chmod -R /home/oracle/u01/app/oracle/ 775







you should try
chmod 755 -R /home/oracle/u01/app/oracle

Open in new window

Avatar of nobleit

ASKER

I tried ...


[root@IND ~]# chmod 755 -R /home/oracle/u01/app/oracle
chmod: cannot access `/home/oracle/u01/app/oracle': No such file or directory
[root@IND ~]#



is all the packages installed before installing oracle if not then try to install it and check the link for installing oracle 11g :
http://www.oracle-base.com/articles/11g/OracleDB11gR2InstallationOnOracleLinux6.php


ASKER CERTIFIED SOLUTION
Avatar of Wasim Akram Shaik
Wasim Akram Shaik
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial