zoukankan      html  css  js  c++  java
  • Oracle Warehouse Builder(OWB) 安装报seeding owbsys错误的解决

    今天在RHEL6.4上安装Oracle Warehouse Builder 11.2时在最后一步报错,打开日志查看有例如以下信息:

    main.TaskScheduler timer[5]20140529@12:27:55.055: 00> oracle.wh.ui.install.assistant.wizards.AssistantWizardDefinition.display(AssistantWizardDefinition.java:1476): [executeOwbReposOrRuntime]:Error occurred during Seeding OWBSYS. Exception =java.lang.Exception: Exception occured in 'processLoadJavaToken'. oracle.ide.ExitNotAllowedException

    google了几篇文章。最后这篇的正文加上后面的讨论攻克了这个问题:http://www.rittmanmead.com/2009/10/owb-11gr2-workspace-creation-issues/

    整理记录例如以下:

    1.clean out the OWBSYS user and then try to “seed” it manually, which simply means creating the required objects in the schema for supporting new workspaces.

      cd $ORACLE_HOME/owb/UnifiedRepos

      sqlplus / as sysdba;

      @clean_owbsys

    @cat_owb (这里提示输入tablespace,我选了users)

    @reset_owbcc_home (这里提示输入home。我指定了ORACLE_HOME的绝对路径给它)

    2.unlockOWBSYS

    ALTER USER OWBSYS ACCOUNT UNLOCK;

     alter user owbsys identified by owbsys;

    3.不要使用"$ORACLE_HOME/owb/bin/unix/owbclient.sh"。而是使用"$ORACLE_HOME/owb/bin/unix/reposinst.sh"来创建workspace;


  • 相关阅读:
    Idea安装Scala插件(转)
    serialVersionUID的作用(转)
    [转]学习win10的bash使用ssh连接远程服务器
    [转]使用 Travis CI 部署你的 Hexo 博客
    【转】H5
    【转】Virtual DOM
    【转】hexo博客图片问题
    【转】V8 之旅: 垃圾回收器
    关于react-redux中Provider、connect的解析
    【转】webpack4
  • 原文地址:https://www.cnblogs.com/mthoutai/p/7159107.html
Copyright © 2011-2022 走看看