问题一:修改weblogic的默认端口
之所以修改默认端口,是因为一台服务器部署了很多的工程为了不冲突只能改访问端口了,修改方法很简单,在你新建的部署(eg:D:\bea\user_projects\domains\frk\config) 下边,找到config.xml文件,打开后对照如下代码
< server >
         < name >AdminServer </ name >
         < log >
             < file-min-size >5000 </ file-min-size >
         </ log >
         < listen-port >8001 </ listen-port > //写上想要的端口号,默认的是没有这一行,要改端口就加上这一行
  < listen-address > </ listen-address >
     </ server >
这样以来,你就可以用http://ip:8001/console来访问了
问题二:没有weblogic的 license
<Server failed. Reason:    
Unable to start WebLogic Server!
Error: license signature validation error.
Please make sure you have a valid license.bea file in the BEA home directory associated with this installation. For more information about the license.bea file, see the installation guide for the version of the
software you are using at http://e-docs.bea.com.
>
解决方法
1.找到对应的文件:D:\bea\user_projects\domains\frk\bin\startWebLogic.cmd(对应每个部署下边都有这个文件)
2.修改配置:startWebLogic.cmd 中的CLASSPATH为
 set CLASSPATH=D:\bea\weblogic_crack.jar;%CLASSPATH%;%MEDREC_WEBLOGIC_CLASSPATH%  
3.把weblogic_crack.jar 加到 D:\bea 路径下。(这个破解jar包已上传在附件里)

问题三:
javax.xml.stream.FactoryConfigurationError: Provider com.ctc.wstx.stax.WstxInputFactory not found.
解决方法
将wstx.jar到welogic域的lib目录下
问题四:
java.io.UTFDataFormatException: Invalid byte 1 of 1- byte UTF-8 sequence.
将对应的文件另存为utf-8即可