在Weblogic中建立域(含報錯解決)

hooca發表於2014-08-18
配置一個Weblogic域


Linux環境下


cd /u01/weblogic/wlserver_10.3/common/bin


./config.sh


根據嚮導設定。完成。
注:生產模式下部署,JDK應選擇JRockit。只有在安裝WLS+Coherencewls1036_linux32.bin)時才有JRockit,帶OEPE的安裝包沒有。


之後可以看到新生成如下的目錄結構:


[wls@weblogic base_domain]$ pwd
/u01/weblogic/user_projects/domains/base_domain
[wls@weblogic base_domain]$ ll
total 36
drwxr-x--- 2 wls wls 4096 Aug 18 16:06 autodeploy
drwxr-x--- 5 wls wls 4096 Aug 18 16:09 bin
drwxr-x--- 9 wls wls 4096 Aug 18 16:09 config
drwxr-x--- 2 wls wls 4096 Aug 18 16:06 console-ext
-rw-r----- 1 wls wls  462 Aug 18 16:09 fileRealm.properties
drwxr-x--- 2 wls wls 4096 Aug 18 16:09 init-info
drwxr-x--- 2 wls wls 4096 Aug 18 16:06 lib
drwxr-x--- 2 wls wls 4096 Aug 18 16:09 security
-rwxr-x--- 1 wls wls  263 Aug 18 16:09 startWebLogic.sh




啟動Weblogic域
./startWebLogic.sh


無法用nohup ./startWebLogic.sh,因為在啟動中會詢問使用者名稱和密碼。
可在啟動後輸入Ctrl+z,再bg,進入後臺執行。


(報錯……)
java.lang.AssertionError: Could not obtain the localhost address. The most likely cause is an error in the network configuration of this machine.
        at weblogic.server.channels.BasicServerChannelImpl.getLocalHost(BasicServerChannelImpl.java:59)
        at weblogic.server.channels.BasicServerChannelImpl.(BasicServerChannelImpl.java:54)
        at weblogic.rjvm.t3.ProtocolHandlerT3$ChannelInitializer.(ProtocolHandlerT3.java:37)
        at weblogic.rjvm.t3.ProtocolHandlerT3.getDefaultServerChannel(ProtocolHandlerT3.java:42)
        at weblogic.server.channels.ChannelService.createServerChannels(ChannelService.java:506)
        Truncated. see log file for complete stacktrace
Caused By: java.net.UnknownHostException: weblogic.demo.com: weblogic.demo.com
        at java.net.InetAddress.getLocalHost(InetAddress.java:1360)
        at weblogic.server.channels.BasicServerChannelImpl.getLocalHost(BasicServerChannelImpl.java:57)
        at weblogic.server.channels.BasicServerChannelImpl.(BasicServerChannelImpl.java:54)
        at weblogic.rjvm.t3.ProtocolHandlerT3$ChannelInitializer.(ProtocolHandlerT3.java:37)
        at weblogic.rjvm.t3.ProtocolHandlerT3.getDefaultServerChannel(ProtocolHandlerT3.java:42)
        Truncated. see log file for complete stacktrace

 
 
 


出現該問題是因為沒有在/etc/hosts中設定主機名和網路卡IP的繫結。


正常情況下,有如下輸出資訊:


……
 
 
 
 


可通過以下URL訪問:
http://192.168.226.130:7001/console

如果要關閉域,

[wls@weblogic bin]$ pwd
/u01/weblogic/user_projects/domains/base_domain/bin
[wls@weblogic bin]$ ./stopWebLogic.sh 

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/22621861/viewspace-1253386/,如需轉載,請註明出處,否則將追究法律責任。

相關文章