kill-9导致weblogic无法启动

转载自:http://blog.csdn.net/lykangjia/article/details/17486127?rsv_upd=1

今天单位系统遇到一个问题:

Resolve Weblogic The persistent store “_WLS_AdminServer” could not be deployed Error

If you encounter the weblogic persistent store error, try the solution below.

#### <> <The persistent store "_WLS_AdminServer" could not be deployed: weblogic.store.PersistentStoreException: [Store:2

80105]The persistent file store "_WLS_AdminServer" cannot open file _WLS_ADMINSERVER000000.DAT.

weblogic.store.PersistentStoreException: [Store:280105]The persistent
file store "_WLS_AdminServer" cannot open file
_WLS_ADMINSERVER000000.DAT.

at weblogic.store.io.file.Heap.open(Heap.Java:325)

at weblogic.store.io.file.FileStoreIO.open(FileStoreIO.java:104)

at weblogic.store.internal.PersistentStoreImpl.recoverStoreConnections(PersistentStoreImpl.java:431)

at weblogic.store.internal.PersistentStoreImpl.open(PersistentStoreImpl.java:422)

at weblogic.store.admin.AdminHandler.activate(AdminHandler.java:126)

at weblogic.store.admin.FileAdminHandler.activate(FileAdminHandler.java:191)

at weblogic.store.admin.DefaultStoreService.start(DefaultStoreService.java:60)

at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)

at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)

at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)

Caused By: java.io.IOException: Error from fcntl() for file locking, Resource temporarily unavailable, errno=11

at weblogic.store.io.file.direct.DirectIONative.openConsiderLock(Native Method)

at weblogic.store.io.file.direct.DirectFileChannel.(DirectFileChannel.java:54)

at weblogic.store.io.file.direct.DirectIOManager.open(DirectIOManager.java:179)

at weblogic.store.io.file.StoreFile.openInternal(StoreFile.java:112)

at weblogic.store.io.file.StoreFile.openDirect(StoreFile.java:168)

at weblogic.store.io.file.Heap.openStoreFile(Heap.java:388)

at weblogic.store.io.file.Heap.open(Heap.java:315)

at weblogic.store.io.file.FileStoreIO.open(FileStoreIO.java:104)

at weblogic.store.internal.PersistentStoreImpl.recoverStoreConnections(PersistentStoreImpl.java:431)

at weblogic.store.internal.PersistentStoreImpl.open(PersistentStoreImpl.java:422)

at weblogic.store.admin.AdminHandler.activate(AdminHandler.java:126)

at weblogic.store.admin.FileAdminHandler.activate(FileAdminHandler.java:191)

at weblogic.store.admin.DefaultStoreService.start(DefaultStoreService.java:60)

at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)

at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)

at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)

>

#### <> <Server failed. Reason:

There are 1 nested errors:

weblogic.management.DeploymentException:

at weblogic.store.admin.AdminHandler.activate(AdminHandler.java:129)

at weblogic.store.admin.FileAdminHandler.activate(FileAdminHandler.java:191)

at weblogic.store.admin.DefaultStoreService.start(DefaultStoreService.java:60)

上午查了一下,解决办法如下:

The problem is if you kill the Weblogic startWebLogic process via kill -9, you’ll have this issue.

To fix it, do the following:

1. Find the “*.DAT” file in user_projects/domains/base_domains directory and remove it.

2. Remove all the lock files such as “EmbeddedLDAP.lok” and “AdminServer.lok” and “config.lok”

3. Use netstat -lntp to find out which process listen to your serverport, kill the process via kill -9

4. Try to start again.

一般的.dat文件在/servers/AdminServer/data/store目录下面

时间: 2024-10-10 02:43:42

kill-9导致weblogic无法启动的相关文章

weblogic服务器启动报错

问题描述: 报错内容:weblogic unable to get file lock 解决办法: 原因:由于先前服务器直接down掉了,所有进程都非正常的进行关闭了,也就导致了下次启动weblogic的时候报错,或是别的进程已经启动了weblogic服务 删除domain下面的所有*.lok文件,以及WLS_DIAGNOSTICS000000.DAT _WLS_ADMINSERVER000000.DAT这两个格式的文件(搜索*.dat然后删掉这两个) 注意:删除时可能会出现文件占用的情况,启动

weblogic无法启动问题与解决

常见问题FAQ : A:weblogic无法启动,错误信息包含如下: <000000> Q:LDAP启动失败,导致的问题可能是用root账户启动了weblogic.检查mydomain目录下myserver/ldap/ldapfiles下的文件权限,是否是weblogic用户组,如果还是无法启动,请删除.tran文件. A:weblogic无法启动,错误信息包含如下: Q:问题是管理域无法与用户域通信.查看linux系统主机名,查看/etc/hosts文件,看是否有如下一行主机记录,如果没有,

【翻译自mos文章】Weblogic AdminServer 启动fail,报错为&quot;unable to get file lock, will retry&quot;

Weblogic AdminServer 启动fail,报错为"unable to get file lock, will retry" 参考原文: Weblogic AdminServer fails with "unable to get file lock, will retry" error message (Doc ID 1613945.1) 适用于: Oracle WebLogic Server - Version 8.1 and later Infor

weblogic开机启动脚本

1.在/home/bea/startBeaAll目录内创建一个startBeaAll.sh文件,加入如下内容(把相应目录与命令修改即可,红字部分为修改地方): #!/bin/sh echo "======weblogic start begin========" echo "======managerServer start begin========" managerid=`ps auxww|grep managerServer|grep -v grep|awk

【从翻译mos文章】Weblogic AdminServer 启动fail,报错&amp;quot;unable to get file lock, will retry&amp;quot;

Weblogic AdminServer 启动fail,报错"unable to get file lock, will retry" 参考原始: Weblogic AdminServer fails with "unable to get file lock, will retry" error message (Doc ID 1613945.1) 适用于: Oracle WebLogic Server - Version 8.1 and later Inform

解决Myeclipse中端口占用,导致tomcat无法启动的问题。(Linux)

本文出自:http://blog.csdn.net/svitter 引文:http://www.2cto.com/os/201305/209285.html { ubuntu查看占用某端口的程序 查看端口使用情况,使用netstat命令. 查看已经连接的服务端口(ESTABLISHED netstat -a 查看所有的服务端口(LISTEN,ESTABLISHED) netstat -ap 查看8080端口,则可以结合grep命令:netstat -ap | grep 8080 如查看8888端

【转】Windows10下80端口被PID为4的System占用导致Apache无法启动的分析与解决方案

昨天刚更新了Windows10,总体上来说效果还是蛮不错的,然而今天在开启Apache服务器的时候却发现,Apache莫名其妙的打不开了,起初以为是权限的问题,于是使用管理员身份的控制台去调用命令net start Apache2.4,结果依然是无法打开.手动启动服务报错“Windows不能再本地计算机启动Apache,有关更多信息,查阅系统时间日志.如果这是非Microsoft服务,请与服务厂商联系,并参考特定服务错误代码1.”如下图所示: Windows不能再本地计算机启动Apache,有关

adb端口被占用导致的无法启动

今天开着酷狗听歌,打开eclipse,运行虚拟机,崩了一句adb无法启动,然后在cmd里kill然后start还是无法启动,关闭eclipse在打开还是无法启动 然后就估计adb得端口被占用了,查了查可以在CMD中查看端口被哪个程序占用,现在记下来这个命令以后万一遇到了可以一样解决: 1.打 netstat -aon|findstr "5037" 查询adb默认端口使用情况如下: 2.打 tasklist|findstr "4288"  查询谁正在用的4288,如下

Boot目录下内容丢失导致系统无法启动

Boot目录下内容丢失导致系统无法启动 笔者朋友近期在一次学习过程中不慎将虚拟机中boot目录下内容丢失,导致系统无法启动.当然此前他并不知道是这样,只是应为莫名的弹出框报错所有导致系统无法启动.此后朋友将此故障告知笔者,笔者本身其实也是小白刚刚学习linux不就,但是对这些稀奇古怪的故障感觉很有兴趣,所以笔者就掉进坑里搞了几个小时到了凌晨2点才搞出来点眉目来.为了让更多学习linux的小白踩坑,笔者将故障处理过程写出来希望和在下一样的小白们少踩坑.下的不好大家别见怪哈. 1.  事故出现原因