zoukankan      html  css  js  c++  java
  • 怎样删除Weblogic Domain?

    转自:http://blog.csdn.net/biplusplus/article/details/7433558

    旁白

      由于没有现成的配置工具可以做这件事,我们需要手工来删除。

    正题

    以下方法适用于weblogic 8.1~10.3.6:

    1、删除domain目录

    <MIDDLEWARE_HOME>/user_projects/domains/<domainDirectory>
    
    例如:D:Oraclemiddlewareuser_projectsdomainsase_domain

    2、删除domain-registry.xml中有关该domain的条目

    <?xml version="1.0" encoding="UTF-8"?>
    <domain-registry xmlns="http://xmlns.oracle.com/weblogic/domain-registry">
      <domain location="D:Oraclemiddlewareuser_projectsdomainsifoundation_domain"/>
      <domain location="D:Oraclemiddlewareuser_projectsdomainsase_domain"/>
    </domain-registry>

    删除红色部分

    注:位于domain-registry.xml位于<MIDDLEWARE_HOME>之下

    3、删除nodemanager.domains中有关该domain的条目

    #Domains and directories created by Configuration Wizard
    #Fri Apr 06 13:09:46 CST 2012
    base_domain=D:\Oracle\middleware\user_projects\domains\base_domain
    bifoundation_domain=D:\Oracle\middleware\user_projects\domains\bifoundation_domain

    删除红色部分

    注:nodemanager.domains位于<MIDDLEWARE_HOME>wlserver_10.3common odemanager之下

    至此,domain已经彻底的被移除了。
    注:删除domain不需要更改Metadata Service (MDS)
  • 相关阅读:
    char类型细节
    Hibernate面试题
    线程
    IO流
    集合
    链表相关的一点东西
    正则表达式学习
    python中的变量域问题
    python的输出和输入形式
    python mutable 和 immutable
  • 原文地址:https://www.cnblogs.com/tv151579/p/3551429.html
Copyright © 2011-2022 走看看