sqlplus: error while loading shared libraries的解决方案是什么

网友投稿 259 2023-12-07

sqlplus: error while loading shared libraries的解决方案是什么

今天就跟大家聊聊有关sqlplus: error while loading shared libraries的解决方案是什么,可能很多人都不太了解,为了让大家更加了解,小编给大家总结了以下内容,希望大家根据这篇文章可以有所收获。

sqlplus: error while loading shared libraries的解决方案是什么

昨天在给学员培训时,安装完毕数据库后,执行sqlplus出现了如下错误。

建好oracle库后,执行sqlplus命令:

[oracle@localhost database]$ sqlplus /nolog

sqlplus: error while loading shared libraries: /oracle/app/product/11.2.0/lib/libclntsh.so.11.1: cannot restore segment prot after reloc: Permission denied

问题原因:安装LINUX时开启了SELinux

解决方案:关闭SELinux

第一种方法

(1)查看SELinux的状态,若为Enforcing表示SELinux为开启状态

[root@mydb]# getenforce

Enforcing

(2)执行setenforce 0将SELinux设为permissive模式(即临时关闭SElinux)

[root@mydb]# setenforce 0

(3)验证上步操作的结果

[root@mydb]# getenforce

Permissive

这种方法的缺点是当系统重启的时候,SELinux又恢复为Enforcing状态,执行sqlplus仍然会报错。

第二种方法

用root账户将/etc/selinux/config中的SELinux=enforcing改为SELinux=disabled,改完之后如下所示:

# 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

重启系统让设置生效:

# reboot

看完上述内容,你们对sqlplus: error while loading shared libraries的解决方案是什么有进一步的了解吗?如果还想了解更多知识或者相关内容,请关注行业资讯频道,感谢大家的支持。

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:服务器异常断电导致数据库挂掉后参数文件损坏及控制文件丢失的解决方案是什么
下一篇:ORA-39213: Metadata processing is not available的解决方案是什么
相关文章

 发表评论

暂时没有评论,来抢沙发吧~