博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
kill-9导致weblogic无法启动
阅读量:5979 次
发布时间:2019-06-20

本文共 3403 字,大约阅读时间需要 11 分钟。

转载自: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.: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目录下面

你可能感兴趣的文章
Laravel 源码解读:php artisan make:auth
查看>>
【转】ionic run android 成功launch success,但是genymotion虚拟机没有显示
查看>>
苹果在GitHub上正式开源iOS内核源码
查看>>
测试人员面临的测试挑战和必备技能
查看>>
使用Flutter之后,我们的CPU占用率降了50%
查看>>
同事反馈环:为什么度量和会议还不够充分
查看>>
[转]十问 Linux 虚拟内存管理 (glibc)
查看>>
老司机带你深入浅出 Collection
查看>>
查询系统-vba
查看>>
[译]Spring Session 与 Spring Security
查看>>
python学习笔记(05)
查看>>
路由器NAT网络地址转换
查看>>
checkbox全选,全不选
查看>>
linux下的连接文件——软连接和硬连接的区别
查看>>
怎么查看linux文件夹下有多少个文件(mac同样)
查看>>
cacti监控一览无余
查看>>
第十六章--访问文件
查看>>
ASP.NET MVC学前篇之Ninject的初步了解
查看>>
Python自动化开发学习15-css补充内容
查看>>
解析find用法
查看>>