error while loading shared libraries处理记录
error while loading shared libraries处理记录
RHEL5.3下安装完Oracle11g后,启动sqlplus报错
[oracle@RHEL53-213 ~]$ sqlplus / as sysdba
sqlplus: error while loading shared libraries: /u01/app/oracle/product/11.2.0/dbhome_1/lib/libclntsh.so.11.1: cannot restore segment prot after reloc: Permission denied
经google确认为seLinux引起的,处理办法如下:
1.关闭seLinux
设置SELINUX=disabled
[root@RHEL53-213 ~]# cd /etc/selinux
[root@RHEL53-213 selinux]# vi config
# This file controls the state of SELinux on the system.
# SELINUX= can take one of these three values:
# enforcing - SELinux security policy is enforced.
# permissive - SELinux prints warnings instead of enforcing.
# disabled - SELinux is fully disabled.
SELINUX=disabled
# SELINUXTYPE= type of policy in use. Possible values are:
# targeted - Only targeted network daemons are protected.
# strict - Full SELinux protection.
SELINUXTYPE=targeted
2.reboot