WAS_啟動報mbind:Invalid argument,mbindargument

來源:互聯網
上載者:User

WAS_啟動報mbind:Invalid argument,mbindargument

***********************************************聲明*********************************************************************** 

原創作品,出自 “深藍的blog” 部落格,歡迎轉載,轉載時請務必註明出處,否則追究著作權法律責任。

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

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

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

啟動、關閉was時會出現“mbind: Invalid argument”提示,雖然不影響啟動、關閉,但想將其無故問題解決。

現象

啟動was

[root@hyl bin]# ./startServer.sh server1mbind: Invalid argumentmbind: Invalid argumentmbind: Invalid argumentmbind: Invalid argumentmbind: Invalid argumentmbind: Invalid argumentmbind: Invalid argumentmbind: Invalid argumentmbind: Invalid argumentmbind: Invalid argumentmbind: Invalid argumentmbind: Invalid argumentmbind: Invalid argumentmbind: Invalid argumentmbind: Invalid argumentmbind: Invalid argumentmbind: Invalid argumentmbind: Invalid argumentmbind: Invalid argumentmbind: Invalid argumentADMU0116I: Tool information is being logged in file           /IBM/WebSphere/AppServer/profiles/AppSrv01/logs/server1/startServer.logADMU0128I: Starting tool with the AppSrv01 profileADMU3100I: Reading configuration for server: server1ADMU3200I: Server launched. Waiting for initialization status.mbind: Invalid argumentADMU3000I: Server server1 open for e-business; process id is 1522 

關閉was

[root@hyl bin]# ./stopServer.sh server1mbind: Invalid argumentmbind: Invalid argumentmbind: Invalid argumentmbind: Invalid argumentmbind: Invalid argumentmbind: Invalid argumentmbind: Invalid argumentmbind: Invalid argumentmbind: Invalid argumentmbind: Invalid argumentmbind: Invalid argumentmbind: Invalid argumentmbind: Invalid argumentmbind: Invalid argumentmbind: Invalid argumentmbind: Invalid argumentmbind: Invalid argumentmbind: Invalid argumentmbind: Invalid argumentmbind: Invalid argumentADMU0116I: Tool information is being logged in file           /IBM/WebSphere/AppServer/profiles/AppSrv01/logs/server1/stopServer.logADMU0128I: Starting tool with the AppSrv01 profileADMU3100I: Reading configuration for server: server1ADMU3201I: 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包的安裝情況,如下操作:

[root@hyl bin]# rpm -qa | grep numactl--查詢到已經安裝的numactl包numactl-devel-2.0.3-9.el6.x86_64numactl-2.0.3-9.el6.x86_64--嘗試將numactl包卸載[root@hyl bin]# rpm -e numactl-devel-2.0.3-9.el6.x86_64[root@hyl 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[root@hyl bin]# rpm -qa |grep numactl--重新查詢,可發現已經成功卸載了包:numactl-devel-2.0.3-9.el6.x86_64numactl-2.0.3-9.el6.x86_64 

再次驗證,was的啟動、關閉已經完全正常,出現的衝突已經解決,如下操作:

啟動was

[root@hyl bin]# ./startServer.sh server1ADMU0116I: Tool information is being logged in file           /IBM/WebSphere/AppServer/profiles/AppSrv01/logs/server1/startServer.logADMU0128I: Starting tool with the AppSrv01 profileADMU3100I: Reading configuration for server: server1ADMU3200I: Server launched. Waiting for initialization status.ADMU3000I: Server server1 open for e-business; process id is 1789

關閉was

[root@hyl bin]# ./stopServer.sh server1ADMU0116I: Tool information is being logged in file           /IBM/WebSphere/AppServer/profiles/AppSrv01/logs/server1/stopServer.logADMU0128I: Starting tool with the AppSrv01 profileADMU3100I: Reading configuration for server: server1ADMU3201I: Server stop request issued. Waiting for stop status.ADMU4000I: Server server1 stop completed. 

***********************************************聲明*********************************************************************** 

原創作品,出自 “深藍的blog” 部落格,歡迎轉載,轉載時請務必註明出處,否則追究著作權法律責任。

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

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


開啟電腦後提示:an invalid argument was encountered

“遇到了一個無效的參數”大概是這個意思
應該是哪個開機啟動的程式報錯,是不是最近裝了什麼軟體而導致的,如果是,嘗試著卸載、重裝試試。
如果你不太確定是哪個軟體程式,就開啟"開機啟動"菜單並關掉它:同時按住“Windows"鍵+R可以開啟”運行“視窗,在視窗裡輸入"msconfig"可以開啟啟動”系統配置"視窗,在“啟動”和“服務”裡面,關掉某些啟動程式,試試。
 
火線魔盒安裝開啟後顯示an invalid argument was encountered

an invalid argument was encountered是指有部分被檢查出來是非法無效的,如果只是你的下的這個檔案有這個問題的話,而不是所有檔案,請重新檢查下載
 

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.