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 libr免费云主机域名aries: /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的解决方案是什么有进一步的了解吗?如果还想了解更多知识或者相关内容,请关注百云行业资讯频道,感谢大家的支持。

相关推荐: 怎么部署Oracle19c dataguard

Oracle19c dataguard.mount Oracle DMLADGPL/SQLFast-Start-Failover (FSFO) .OracleOracle Active Data Guard.ADG_ACCOUNT_INFO_TRACKINGO…

免责声明:本站发布的图片视频文字,以转载和分享为主,文章观点不代表本站立场,本站不承担相关法律责任;如果涉及侵权请联系邮箱:360163164@qq.com举报,并提供相关证据,经查实将立刻删除涉嫌侵权内容。

(0)
打赏 微信扫一扫 微信扫一扫
上一篇 01/16 11:14
下一篇 01/16 11:14