zoukankan      html  css  js  c++  java
  • ORACLE--10G安装问题( error while loading shared libraries)

    01,问题描述

    问题一:
    WARNING: directory '/u01/app/oracle/product/10.2.0' is not owned by root
    WARNING: directory '/u01/app/oracle/product' is not owned by root
    WARNING: directory '/u01/app/oracle' is not owned by root
    WARNING: directory '/u01/app' is not owned by root
    WARNING: directory '/u01' is not owned by root
    
    问题二:
    Waiting for the Oracle CRSD and EVMD to start
    Oracle CRS stack installed and running under init(1M)
    Running vipca(silent) for configuring nodeapps
    /u01/app/oracle/product/10.2.0/db_1/jdk/jre//bin/java: error while loading shared libraries: libpthread.so.0: cannot open shared object file: No such file or directory

    02,问题一

      这个问题可以忽略

    03,问题二

      原因是

      然 而这个系统是5或者以上版本就会出现这个问题

      解决办法:

      修改vipca

    进去到¥ORACLE_HOME/bin下面
    
    [root@shlpdbwx02 bin]# ls vipca
    vipca
    [root@shlpdbwx02 bin]# pwd
    /u01/app/oracle/product/10.2.0/db_1/bin 
    在这个位置添加一个 unset LD_ASSUME_KERNEL
    
    
    [root@shlpdbwx02 bin]# ./vipca
    Error 0(Native: listNetInterfaces:[3])
      [Error 0(Native: listNetInterfaces:[3])]
    [root@shlpdbwx02 bin]# ./oifcfg iflist
    eth0  192.168.0.0
    eth1  172.168.0.0
    ----ip 地址为自己服务器网段的地址
    [root@shlpdbwx02 bin]# ./oifcfg setif -global eth0/192.168.0.0:public
    [root@shlpdbwx02 bin]#  ./oifcfg setif -global eth1/172.168.0.0:cluster_interconnect
    [root@shlpdbwx02 bin]# ./oifcfg iflist
    eth0  192.168.0.0
    eth1  172.168.0.0
    [root@shlpdbwx02 bin]# ./oifcfg getif
    eth0  192.168.0.0  global  public
    eth1  172.168.0.0  global  cluster_interconnect
    [root@shlpdbwx02 bin]#./vipca

     

     

  • 相关阅读:
    查看文件夹内各文件数目
    Resnet论文翻译
    查看keras自动给文件夹标号
    文件夹内自动图片遍历
    将wiki人脸数据集的性别信息提取出来制作标签
    将wiki人脸数据集中的图片按男女分类
    IPFS私有网络集群搭建
    带参数的函数增加装饰器
    【IPFS + 区块链 系列】 入门篇 — IPFS环境配置
    程序员那些事儿:技术骨干的烦恼
  • 原文地址:https://www.cnblogs.com/kingle-study/p/11155643.html
Copyright © 2011-2022 走看看