zoukankan      html  css  js  c++  java
  • 启动Weblogic时报 <unable to get file lock, will retry...>解决方案

    启动Weblogic时,报 <unable to get file lock, will retry...>,解决方法:

    I ran into this error the first time I restarted Weblogic on one of my installs, the only reference that I was able to find is the error description below:

     

    BEA-141281

    Info: unable to get file lock, will retry …

    Description

    This message indicates that WLS can not get file lock because other process still holds the lock. W LS will try again before timeout.

    Cause

    This is an information-level message only.

    Action

    If WLS fails to start due to unable to get file lock, then lock files need to be removed manually before restart WLS.

    The funny thing is that it tells you to remove the locks but doesn’t provide their location, if you are running OBIEE 11g you can remove AdminServer.lok from:

    d:oraclefmwuser_projectsdomainsifoundation_domainserversAdminServer mp

    If you are not using Weblogic in the context of Oracle Busines Intelligence you can do a file search for any lok files under your middleware home (d:oraclefmw).

    ------------------------------------------------

    概述

    由于先前服务器直接down掉了,所有进程都非正常的进行关闭了,也就导致了下次启动weblogic的时候报了以下错误:

    <2012-3-2 下午05时08分34秒 CST> <Info> <Management> <BEA-141281> <unable to get file lock, will retry …> 
    <2012-3-2 下午05时08分44秒 CST> <Info> <Management> <BEA-141281> <unable to get file lock, will retry …>

    解决办法

    一.删掉Domain下的*.lok文件

    1. 删除edit.lok

    进入到domain_home下:

    cd /u01/Oracle/Middleware/user_projects/domains/idm_domain

    将edit.lok文件删掉

    rm edit.lok

    2.删除config.lok

    进入到domain_home/config下:

    cd /u01/Oracle/Middleware/user_projects/domains/idm_domain/config/

    将config.lok文件删掉

    rm config.lok

    3.删除AdminServer.lok

    cd /u01/Oracle/Middleware/user_projects/domains/idm_domain/servers/AdminServer/tmp

    rm AdminServer.lok

    4.删除EmbeddedLDAP.lok

    /u01/Oracle/Middleware/user_projects/domains/idm_domain/servers/AdminServer/data/ldap/ldapfiles

    rm EmbeddedLDAP.lok

    二.删掉Domain下的*.DAT文件:

    进入到domain_home当中

    cd /u01/Oracle/Middleware/user_projects/domains/idm_domain

    找到文件被删掉

    [oracle@idm idm_domain]$ find servers/ -name "*.DAT" 
    servers/AdminServer/data/store/diagnostics/WLS_DIAGNOSTICS000000.DAT 
    servers/AdminServer/data/store/default/_WLS_ADMINSERVER000000.DAT

    重新启动weblogic,搞定!

    ------------------------------------------------

    参考上面方法还是会报错,后来将进程里的java.exe都结束了, 然后在服务中把Ooracle Process Manager 和Oracle WebLogic NodeManger起起来后再重新启动BI服务

  • 相关阅读:
    jquery 删除cookie失效的解决方法
    SQL Server 抛出自定义异常,由C#程序俘获之并进行相应的处理
    SqlServer中的自增的ID的最后的值:
    Stream/Bytes[]/Image对象相互转化
    TextBox禁止复制粘贴和数字验证,小数验证,汉字验证
    扩展WPF的DataGrid按方向键移动焦点
    WPF 中获取DataGrid 模板列中控件的对像
    IIS设置文件 App_Offline.htm 网站维护
    IIS设置文件 Robots.txt 禁止爬虫
    js中的整除运算
  • 原文地址:https://www.cnblogs.com/hukailee/p/4023017.html
Copyright © 2011-2022 走看看