Jack Zhu <[email protected]> wrote in message
news:[email protected]...
> After I installed the Oracle 815 on RedHat 6.0 Linux, and I try to
run
> some app(actually all apps have the same problem), such as 'sqlplus',
> but I get 'Permission denied' message.
>
> I log in as one member of 'dba' group. This should work, according
to
> Oracle's doc.
>
> Anyone help me?? Thanks a lot!
>
check if you can run sqlplus and connect as the oracle user.
If so check your permissions on the group for the $ORACLE_HOME/bin
directory.
They should be rwxr-x---. Also make sure that the oracle exe is SUID
ls -al oracle
it should be something liks
oracle s-xr-x---
the s bit is important.
If not run it on with
chmod 4755 oracle
check if the $ORACLE_HOME and ORACLE_SID are defined for this user.
make sure the $ORACLE_HOME/bin dir is in the PATH environment variable
.
Dan.