您好,登錄后才能下訂單哦!
這期內(nèi)容當(dāng)中小編將會給大家?guī)碛嘘P(guān)如何進(jìn)行WebSphere經(jīng)典錯誤解析,文章內(nèi)容豐富且以專業(yè)的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。
WebSphere 是 IBM 的軟件平臺。它包含了Web 應(yīng)用程序和跨平臺、跨產(chǎn)品解決方案所需要的整個中間件基礎(chǔ)設(shè)施,如服務(wù)器、服務(wù)和工具等。在使用WebSphere的過程中,大家會遇到這樣那樣的問題,在此就常見錯誤做個解析與總結(jié)。
一、WAS應(yīng)用無法正常停啟
有時會碰到正常停是停不了的應(yīng)用,這是因為系統(tǒng)里進(jìn)程的連接釋放不了。這時候直接在系統(tǒng)里把應(yīng)用的進(jìn)程殺掉即可。
Scm01的停啟如下
首先登進(jìn)10.8.2.201,執(zhí)行以下命令
ps –ef|grep ScmWeb01
找到應(yīng)用的進(jìn)程,正常情況應(yīng)該有兩個,一個為node的進(jìn)程,一個為server的進(jìn)程,如下
先殺掉node的進(jìn)程
kill -9 7427
注: //7427為進(jìn)程的pid號
接著殺掉server進(jìn)程
kill -9 20287 //20287也是pid號
這時候應(yīng)用就停了
啟動方法如下
先執(zhí)行
/opt/IBM/WebSphere/ScmWeb01/bin/startNode.sh
然后執(zhí)行
/opt/IBM/WebSphere/ScmWeb01/bin/startServer.sh Scm01
等到進(jìn)程的pid號出現(xiàn),server即啟起來了,這時候就可以通過訪問單個server的方式訪問了。
二、WAS 節(jié)點(diǎn)不同步解決辦法
節(jié)點(diǎn)不同步易產(chǎn)生的錯誤現(xiàn)象:
1、啟動應(yīng)用的時候特別慢,報“可能已經(jīng)啟動成功,但沒有在預(yù)定的時間啟動完成,詳情請參考日志。
2、 “企業(yè)級應(yīng)用程序”下應(yīng)用的狀態(tài)好像不對,在WebSphere企業(yè)應(yīng)用程序中啟動起來的應(yīng)用在這里仍然是“紅X”狀態(tài)。
3、系統(tǒng)管理下的節(jié)點(diǎn)狀態(tài)不對,同步節(jié)點(diǎn)后仍然顯示未同步。
4、部署新應(yīng)用后啟動時,會報
[12-4-11 20:08:07:127 CST] 0000002b DefaultTokenP I HMGR0149E: 嘗試打開到核心組 DefaultCoreGroup 的連接被拒絕。發(fā)送進(jìn)程的名稱為
fqztestapCell01\fqztestapCellManager01\dmgr 且 IP 地址為172.18.251.23。本地進(jìn)程中的全局安全性為 Disabled。發(fā)送進(jìn)程中的全局安全性為 Enabled。接收到的標(biāo)記以????+?Qe?? 開頭。異常為 <null>。
[12-4-11 20:20:40:736 CST] 00000017 AdminHelper A ADMN1009I: 嘗試啟動 rews_message_parse 應(yīng)用程序。
[12-4-11 20:20:40:740 CST] 00000017 ApplicationMg W WSVR0215W: 啟動應(yīng)用程序 rews_message_parse 失敗。尚未安裝該應(yīng)用程序。
[12-4-11 20:42:21:326 CST] 00000016 AdminHelper A ADMN1009I: 嘗試啟動 rews_message_parse 應(yīng)用程序。
[12-4-11 20:42:21:330 CST] 00000016 ApplicationMg W WSVR0215W: 啟動應(yīng)用程序 rews_message_parse 失敗。尚未安裝該應(yīng)用程序。
但實際部署的整個過程中,日志沒有報錯且控制臺上提示部署成功。這種Was控制臺節(jié)點(diǎn)顯示同步狀態(tài)不正常,無法完成同步,問題解決如下:
1、切換到bin目錄下,執(zhí)行相應(yīng)命令,依次停止 server 、 node 、dmgr(嚴(yán)格按照此順序)
/opt/IBM/WebSphere/AppServer/profiles/AppSrv02/bin/stopServer.sh server1
/opt/IBM/WebSphere/AppServer/profiles/AppSrv02/bin/stopNode.sh
/opt/IBM/WebSphere/AppServer/bin/stopManager.sh
2、刪除 wstemp, temp 和 config/temp 文件夾下面的臨時文件
/opt/IBM/WebSphere/AppServer/profiles/Dmgr01/temp、wstemp、tranlog目錄下內(nèi)容刪除。
/opt/IBM/WebSphere/AppServer/profiles/Dmgr01/config/temp目錄下內(nèi)容刪除。
3、同步節(jié)點(diǎn):
##同步節(jié)點(diǎn)信息
切換到“/opt/IBM/WebSphere/AppServer/profiles/AppSrv02/bin/”下:
執(zhí)行 :syncNode.sh kmtest 8879 -username wasadmin -password 000000
其中 “kmtest”是was所部署在的主機(jī)名第二項即為主機(jī)名
4、依次啟動 dmgr、node、server (嚴(yán)格按照此順序) #依次停止 server 、 node 、dmgr
/opt/IBM/WebSphere/AppServer/bin/startManager.sh
/opt/IBM/WebSphere/AppServer/profiles/AppSrv02/bin/startNode.sh
/opt/IBM/WebSphere/AppServer/profiles/AppSrv02/bin/startServer.sh server1
三、節(jié)點(diǎn)未激活
錯誤提示:Server cannot be started because the node agent for server server1 on node server1Node01 is not active.
在/opt/IBM/WebSphere/AppServer/bin下用startNode.sh起節(jié)點(diǎn)的時候報
ADMU0111E: Program exiting with error: java.io.FileNotFoundException:
/opt/IBM/WebSphere/AppServer/profiles/Dmgr01/config/cells/server1Cell01/nodes/server1CellManager01/servers/nodeagent/server.xml
(No such file or directory)
這是因為WAS管理控制臺上,節(jié)點(diǎn)啟停的真正的文件并不在這個目錄下
可以進(jìn)到這個/opt/IBM/WebSphere/AppServer/profiles/AppSrv01/bin目錄下
先啟節(jié)點(diǎn)
server1:/opt/IBM/WebSphere/AppServer/profiles/AppSrv01/bin # ./startNode.sh
ADMU0116I: Tool information is being logged in file
/opt/IBM/WebSphere/AppServer/profiles/AppSrv01/logs/nodeagent/startServer.log
ADMU0128I: Starting tool with the AppSrv01 profile
ADMU3100I: Reading configuration for server: nodeagent
ADMU3200I: Server launched. Waiting for initialization status.
ADMU3000I: Server nodeagent open for e-business; process id is 5894
再啟服務(wù)器
server1:/opt/IBM/WebSphere/AppServer/profiles/AppSrv01/bin # ./startServer.sh server1
ADMU0116I: Tool information is being logged in file
/opt/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 6121
然后向WAS管理控制臺加入該節(jié)點(diǎn)
server1:/opt/IBM/WebSphere/AppServer/profiles/AppSrv01/bin # ./addNode.sh 192.168.0.8 8879 -username wasadmin -password 12345
ADMU0116I: Tool information is being logged in file
/opt/IBM/WebSphere/AppServer/profiles/AppSrv01/logs/addNode.log
ADMU0128I: Starting tool with the AppSrv01 profile
CWPKI0308I: Adding signer alias "datapower">
"ClientDefaultTrustStore" with the following SHA digest:
A9:BA:A4:B5:BC:26:2F:5D:2A:80:93:CA:BA:F4:31:05:F2:54:14:17
ADMU0001I: Begin federation of node server1Node01 with Deployment Manager at
192.168.0.8:8879.
ADMU0009I: Successfully connected to Deployment Manager Server:
192.168.0.8:8879
ADMU0033E: The node server1Node01 already has been added to the cell.
ADMU0027E: An error occurred during federation ADMU0033E: The node
server1Node01 already has been added to the cell.; rolling back to
original configuration.
ADMU0211I: Error details may be seen in the file:
/opt/IBM/WebSphere/AppServer/profiles/AppSrv01/logs/addNode.log
ADMU0111E: Program exiting with error:
com.ibm.ws.management.tools.DoNotDoAddNodeException: ADMU0033E: The
node server1Node01 already has been added to the cell.
ADMU1211I: To obtain a full trace of the failure, use the -trace option.
ADMU0211I: Error details may be seen in the file:
/opt/IBM/WebSphere/AppServer/profiles/AppSrv01/logs/addNode.log
然后在控制臺里看節(jié)點(diǎn)已正常并已運(yùn)行了。
另一種解決辦法:我是先到server1\bin中把節(jié)點(diǎn)關(guān)聯(lián)起來:操作方法:到WAS控制臺>>>切換到server01\bin>>>輸入命令同步關(guān)聯(lián)>>>syncNode.sh localhost 8879 -username XXX -password XXX >>>然后
>>>addNode.sh localhost 8879 -username XXX -password XXX 按回車鍵 >>>startNode.bat >>>按回車鍵 就OK了。現(xiàn)在,重新你的管理控制臺,然后到頁面上查看你的節(jié)點(diǎn),狀態(tài)是可以啟動了。
上述就是小編為大家分享的如何進(jìn)行WebSphere經(jīng)典錯誤解析了,如果剛好有類似的疑惑,不妨參照上述分析進(jìn)行理解。如果想知道更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。