WAS_启动报mbind:Invalid argument

***********************************************声明*********************************************************************** 

原创作品,出自 “深蓝的blog” 博客,欢迎转载,转载时请务必注明出处,否则追究版权法律责任。

深蓝的blog:http://blog.csdn.net/huangyanlong/article/details/39697853

****************************************************************************************************************************

环境:LINUX CentOS6.2、Oracle10.2.0.5、WAS7.0

启动、关闭was时会出现“mbind: Invalid argument”提示,虽然不影响启动、关闭,但想将其无故问题解决。

现象

启动was

[[email protected] bin]# ./startServer.sh server1

mbind: Invalid argument

mbind: Invalid argument

mbind: Invalid argument

mbind: Invalid argument

mbind: Invalid argument

mbind: Invalid argument

mbind: Invalid argument

mbind: Invalid argument

mbind: Invalid argument

mbind: Invalid argument

mbind: Invalid argument

mbind: Invalid argument

mbind: Invalid argument

mbind: Invalid argument

mbind: Invalid argument

mbind: Invalid argument

mbind: Invalid argument

mbind: Invalid argument

mbind: Invalid argument

mbind: Invalid argument

ADMU0116I: Tool information is being logged in file

           /IBM/WebSphere/AppServer/profiles/AppSrv01/logs/server1/startServer.log

ADMU0128I: Starting tool with the AppSrv01 profile

ADMU3100I: Reading configuration for server: server1

ADMU3200I: Server launched. Waiting for initialization status.

mbind: Invalid argument

ADMU3000I: Server server1 open for e-business; process id is 1522 

关闭was

[[email protected] bin]# ./stopServer.sh server1

mbind: Invalid argument

mbind: Invalid argument

mbind: Invalid argument

mbind: Invalid argument

mbind: Invalid argument

mbind: Invalid argument

mbind: Invalid argument

mbind: Invalid argument

mbind: Invalid argument

mbind: Invalid argument

mbind: Invalid argument

mbind: Invalid argument

mbind: Invalid argument

mbind: Invalid argument

mbind: Invalid argument

mbind: Invalid argument

mbind: Invalid argument

mbind: Invalid argument

mbind: Invalid argument

mbind: Invalid argument

ADMU0116I: Tool information is being logged in file

           /IBM/WebSphere/AppServer/profiles/AppSrv01/logs/server1/stopServer.log

ADMU0128I: Starting tool with the AppSrv01 profile

ADMU3100I: Reading configuration for server: server1

ADMU3201I: Server stop request issued. Waiting for stop status.

ADMU4000I: Server server1 stop completed.

解决思路

通过现象预判oracle和was可能存在某端口或其它原因引起的冲突,造成如下提示信息。

解决这个问题是由oracle带来的启发。在不久前某系统环境下出现在oracle的问题,部分内容如下:

SQL>startup

mbind: Invalid argument

mbind: Invalid argument

mbind: Invalid argument

mbind: Invalid argument

mbind: Invalid argument

ORA-00443: background process "DBW1" did not start

这个问题是oracle与系统中的numactl-0.9.6-3.25.28包冲突,卸载即可

于是尝试查询本系统下,numactl包的安装情况,如下操作:

[[email protected] bin]# rpm -qa | grep numactl

--查询到已经安装的numactl包

numactl-devel-2.0.3-9.el6.x86_64

numactl-2.0.3-9.el6.x86_64

--尝试将numactl包卸载

[[email protected] bin]# rpm -e numactl-devel-2.0.3-9.el6.x86_64

[[email protected] bin]# rpm -e numactl-2.0.3-9.el6.x86_64

--卸载numactl-2.0.3-9.el6.x86_64包时出现依赖关系,此处不做过多考虑,跳过卸载此步

error: Failed dependencies:

        libnuma.so.1()(64bit) is needed by (installed) compat-openmpi-psm-1.4.3-1.el6.x86_64

        libnuma.so.1()(64bit) is needed by (installed) libvirt-client-0.9.4-23.el6.x86_64

        libnuma.so.1()(64bit) is needed by (installed) compat-openmpi-1.4.3-1.el6.x86_64

        libnuma.so.1()(64bit) is needed by (installed) hwloc-1.1-0.1.el6.x86_64

        libnuma.so.1()(64bit) is needed by (installed) numactl-devel-2.0.3-9.el6.x86_64

        libnuma.so.1(libnuma_1.1)(64bit) is needed by (installed) compat-openmpi-psm-1.4.3-1.el6.x86_64

        libnuma.so.1(libnuma_1.1)(64bit) is needed by (installed) libvirt-client-0.9.4-23.el6.x86_64

        libnuma.so.1(libnuma_1.1)(64bit) is needed by (installed) compat-openmpi-1.4.3-1.el6.x86_64

        libnuma.so.1(libnuma_1.1)(64bit) is needed by (installed) hwloc-1.1-0.1.el6.x86_64

        libnuma.so.1(libnuma_1.2)(64bit) is needed by (installed) libvirt-client-0.9.4-23.el6.x86_64

        libnuma.so.1(libnuma_1.2)(64bit) is needed by (installed) hwloc-1.1-0.1.el6.x86_64

        numactl = 2.0.3-9.el6 is needed by (installed) numactl-devel-2.0.3-9.el6.x86_64

[[email protected] bin]# rpm -qa |grep numactl

--再次查询,可发现已经成功卸载了包:numactl-devel-2.0.3-9.el6.x86_64

numactl-2.0.3-9.el6.x86_64 

再次验证,was的启动、关闭已经完全正常,出现的冲突已经解决,如下操作:

启动was

[[email protected] bin]# ./startServer.sh server1

ADMU0116I: Tool information is being logged in file

           /IBM/WebSphere/AppServer/profiles/AppSrv01/logs/server1/startServer.log

ADMU0128I: Starting tool with the AppSrv01 profile

ADMU3100I: Reading configuration for server: server1

ADMU3200I: Server launched. Waiting for initialization status.

ADMU3000I: Server server1 open for e-business; process id is 1789

关闭was

[[email protected] bin]# ./stopServer.sh server1

ADMU0116I: Tool information is being logged in file

           /IBM/WebSphere/AppServer/profiles/AppSrv01/logs/server1/stopServer.log

ADMU0128I: Starting tool with the AppSrv01 profile

ADMU3100I: Reading configuration for server: server1

ADMU3201I: Server stop request issued. Waiting for stop status.

ADMU4000I: Server server1 stop completed. 

***********************************************声明*********************************************************************** 

原创作品,出自 “深蓝的blog” 博客,欢迎转载,转载时请务必注明出处,否则追究版权法律责任。

深蓝的blog:http://blog.csdn.net/huangyanlong/article/details/39697853

****************************************************************************************************************************

时间: 2024-08-24 21:24:28

WAS_启动报mbind:Invalid argument的相关文章

windows下启动redis提示Invalid argument during startup: Failed to open the .conf file: redis.windows.connf CWD=C:\Users\Administrator

环境:Windows 7 64bit 旗舰版 redis 3.2.100 64bit 开始的时候,redis运行的好好的,不过每次启动都要要进入其路径,挺麻烦的,所以就想把它的路径设置到环境变量里,然后直接运行就出现错误:Invalid argument during startup:Failed to open the .conf file: redis.windows.connf CWD=C:\Users\Administrator 网上搜索了好久也找不到解决办法.后来想是不是因为环境变量的

[Android]模拟器不能启动,报错:Cannot set up guest memory 'android_arm': Invalid argument

[错误] 模拟器无法启动,报错:Cannot set up guest memory 'android_arm': Invalid argument [解决办法] 在AVD中(Android Virtual Device Manager)将模拟器的RAM调成512. 参考:http://stackoverflow.com/questions/26620765/cannot-set-up-guest-memory-android-arm-invalid-argument 版权声明:本文为博主原创文

esxi 5.1 因为断电错误无法启动 报错 bank5 invalid configuration

因为着急,处理过程中也没有截图,这里简单的描述下整个过程吧. IBM pcserver x3850 可能是机器太热的原因,中午无故掉电,导致esxi无法正常启动 启动时报错 bank5 invalid configuration no hypervistor found 启动盘里面有保留原来的datastore的选项,但是没有尝试过,所以这里先对虚拟机进行了一次备份操作. 备份: 使用linux live cd的方式挂接移动硬盘来进行备份: 这里使用的是systemrescuecd 简单好用,而

ndk-build 编译报错 fatal error: error writing to -: Invalid argument } ^

最近下载同事的 Android 工程代码,协作开发一些 Native 底层功能,需要首先编译底层的一些 JNI 的代码库,由于工程较大,且依赖的第三方库比较多,下载完毕后,通过 ndk-build 进行编译,报了一些个奇怪的错误,并指向了代码文件的最后一行,如下所示: fatal error: error writing to -: Invalid argument } ^ 此工程源码一直是同事在 MAC 下进行开发维护的,在同事的环境中是正常的,而我是 Windows 平台,刚开始怀疑是文件类

esxi 5.1 由于断电错误无法启动 报错 bank5 invalid configuration

由于着急,处理过程中也没有截图,这里简单的描写叙述下整个过程吧. IBM pcserver x3850 可能是机器太热的原因,中午无故掉电,导致esxi无法正常启动 启动时报错 bank5 invalid configuration no hypervistor found 启动盘里面有保留原来的datastore的选项,可是没有尝试过,所以这里先对虚拟机进行了一次备份操作. 备份: 使用linux live cd的方式挂接移动硬盘来进行备份: 这里使用的是systemrescuecd 简单好用

Myeclipse启动报错: Invalid 'log4jConfigLocation' parameter

java.lang.IllegalArgumentException: Invalid 'log4jConfigLocation' parameter: class path resource [log4j.properties] cannot be resolved to URL because it does not exist 解决办法:勾选Enable project specific settings: 在Libraries 中: Myeclipse启动报错: Invalid 'log

nginx或者php-fpm 启动时报错 “shmget() failed: Invalid argument”

博客:http://lijinhuan.blog.51cto.com/ 微博:http://weibo.com/lijinhuanexperience 代码:https://github.com/lijinhuan 报错详情:shmget() failed: Invalid argumentFailed to start up concurrent users module! 原因:kernel.shmmax设置未生效 解决方法:[[email protected] ~]# sysctl -a

centos无法正常启动,报chown: invalid user:'root:root'

现象: 系统无法正常启动,启动界面卡在上图的位置 注意错误信息:chown: invalid user:'root:root' 原因:/etc/passwd文件损坏或者被清空 尝试:1.grub菜单项按e进入内核编辑模式,试图进入单用户模式,将/etc/passwd- 还原成/etc/passwd,无法进入,仍在启动过程中停留在故障界面 解决思路:刻录系统光盘--进入修复模式-将原/etc/passwd-替换原/etc/passwd,这样能正常进入验证用户名密码的界面,如果验证不了,现在就可以进

解决;R语言使用sqldf库是报错"Failed to connect to database: Error: Access denied for user '..'@'localhost' (using password: NO) Error in !dbPreExists : invalid argument type"

原因:在使用sqldf时,不需要加载RMySQL库 解决方案:在控制台执行释放RMySQL库加载 detach("package:RMySQL", unload=T); 解决;R语言使用sqldf库是报错"Failed to connect to database: Error: Access denied for user '..'@'localhost' (using password: NO) Error in !dbPreExists : invalid argume