Oracle software installation throws Permission denied error when installing or upgrading RSA Identity Governance & Lifecycle
4 years ago
Originally Published: 2021-02-09
Article Number
000045155
Applies To
RSA Product Set: RSA Identity Governance & Lifecycle
RSA Version/Condition: 7.x
 
Issue
Oracle software installation throws below error when installing or upgrading RSA Identity Governance & Lifecycle:
[Mon Feb 1 19:59:59 CST 2021] Installing Oracle.12.1.0.2.0 ...
-bash: line 5: ./runInstaller: Permission denied
Fresh install failed.. deleting /tmp/aveksa/install, /home/oracle/Aveksa_System.cfg and /rsa/files1/home/oracle/setDeployEnv.sh as part of cleanup.
Step failed! See /tmp/aveksa-install.log for more information.
Cause
/tmp mount has noexec attribute set which prohibits Oracle installation binaries to be executed under /tmp.
oracle@acm-720:~> grep /tmp /etc/fstab
/tmp /var/tmp none rw,noexec,nosuid,nodev,bind 0 0

 
Resolution
Remove noexec attribute for /tmp inside /etc/fstab.
oracle@acm-720:~> grep /tmp /etc/fstab
/tmp /var/tmp none rw,nosuid,nodev,bind 0 0