Job Records --ORA-07445

简介:
     Symptom :  Start sqlplus and then respond the error of system like below:

error while loading shared libraries
        
        Solution:
       You probably have SELinux mode set to “Enforcing”.
        Security-Enhanced Linux (SELinux) is a Linux feature that provides a variety of security policies. It is not a Linux distribution, but rather a set of modifications that can be applied to Unix-like operating systems, such as Linux and BSD.
       Under  Redhat Enterprise Linux, if needed we can switch  SELinux from the default “Enforcing” mode that it is running in, to the “Permissive” mode by running following commands as root user:
        [root@server~]#  getenforce
        Enforcing
         [root@server~]#  setenforce 0
         [root@server~]#  getenforce
         Permissive
        The previous commandes changed the default mode to “permissive” and allows SELinux to continue running, and logging denial messages, but will not deny any operations. 
       Another way to temporarily disable (0) or enable (1) SELinux is to run one of the following commands:
      [root@server~]#  echo 0 > /selinux/enforce
       [root@server~]#  echo 1 > /selinux/enforce
     The previous commands are immediate, and will remain in effect until the next reboot. If you want to make “Permissive” mode permanent you must add “enforcing=0″ to the kernel boot line that usually is at /etc/grub.conf file. For instance:
# grub.conf generated by anaconda
#
# Note that you do not have to rerun grub after making changes to this file
# NOTICE: You have a /boot partition. This means that
# all kernel and initrd paths are relative to /boot/, eg.
# root (hd0,0)
# kernel /vmlinuz-version ro root=/dev/sda3
# initrd /initrd-version.img
#boot=/dev/sda
default=0
timeout=5
splashimage=(hd0,0)/grub/splash.xpm.gz
hiddenmenu
title Red Hat Enterprise Linux Server (2.6.18-128.el5xen)
root (hd0,0)
kernel /xen.gz-2.6.18-128.el5
module /vmlinuz-2.6.18-128.el5xen ro root=LABEL=/
enforcing=0
module /initrd-2.6.18-128.el5xen.img

        Instead of editing grub we can configure SELinux by editing the file /etc/selinux/config and choose any of the following modes:
SELINUX=enforcing
or
SELINUX=permissive
or
SELINUX=disabled
         After the next reboot the SELinux will comply to the permanent settings that we have choosen above.
本文转自Be the miracle!博客51CTO博客,原文链接http://blog.51cto.com/miracle/193618如需转载请自行联系原作者

Larry.Yue
相关文章
|
7月前
|
消息中间件 Oracle 关系型数据库
实时计算 Flink版操作报错合集之报错io.debezium.DebeziumException: The db history topic or its content is fully or partially missing. Please check database history topic configuration and re-execute the snapshot. 是什么原因
在使用实时计算Flink版过程中,可能会遇到各种错误,了解这些错误的原因及解决方法对于高效排错至关重要。针对具体问题,查看Flink的日志是关键,它们通常会提供更详细的错误信息和堆栈跟踪,有助于定位问题。此外,Flink社区文档和官方论坛也是寻求帮助的好去处。以下是一些常见的操作报错及其可能的原因与解决策略。
419 0
|
SQL 关系型数据库 Oracle
ORA-01466: unable to read data - table definition has changed
1. Oracle建议我们等待大约5分钟之后再进行flashback query新创建的表,否则可能会碰到这个错误ORA-01466: unable to read data - table definition has changed.
1813 0
|
Oracle 关系型数据库 网络协议
|
数据库
ORA-00059:maximum number of DB_FILES exceed
ORA-00059:maximum number of DB_FILES exceed SQL> show parameter db_files NAME                                 TYPE        VALUE --------------------...
1320 0