1.下载wls_121200.jar,2.输入cnd打开命令提示3.f:进入F盘4.Java -version 验证是否配置Java环境,5.echo %path% 查看环境变量6.set PATH=%PATH%;D:\jdk-7u9-windows-x64\jdk1.7.0_09\bin 在当前进...
分类:
Web程序 时间:
2014-06-26 11:16:55
阅读次数:
390
1、内存设置
修改weblogic\user_projects\domains\base_domain\bin下的setDomainEnv.cmd文件:设置大小根据实际情况确定
if "%JAVA_VENDOR%"=="Sun" (
set WLS_MEM_ARGS_64BIT=-Xms512m –Xmx1024m
set WLS_MEM_ARGS_32BIT=-Xms512m –...
分类:
Web程序 时间:
2014-06-26 08:06:18
阅读次数:
436
Connection test failed. Listener refused the connection with the following error: ORA-12505, TNS:listener does not currently know of SID given in conn...
分类:
Web程序 时间:
2014-06-25 23:48:58
阅读次数:
387
今天在weblogic发布应用包时,包内含有中文的路径或者文件名,发布时报错提示乱码,挂不上包!
通过命令 echo $LANG 发现输出 zh_CN.UTF-8
我们需要修改LANG的环境变量才可以解决这个问题!
a.若要临时解决,可变更当前环境变量,执行 export LANG=zh_CN.GB18030,但本次打开的终端关闭后环境变量就会变回系统默认
b.若有永...
分类:
Web程序 时间:
2014-06-25 08:11:50
阅读次数:
255
[root@serverlogs]#ls-l/bea/total136drwxr-xr-x6rootroot4096Jun2409:35coherence_3.5-rw-r-----1rootroot317Jun2410:34domain-registry.xmldrwxr-xr-x2rootroot4096Jun2410:34logsdrwxr-xr-x7rootroot28672Jun2409:33modules-rw-r--r--1rootroot621Jun2409:35ocm.rspdrwxr-xr..
分类:
Web程序 时间:
2014-06-25 06:17:58
阅读次数:
356
boot.properties可以使管理服务器启动时不需要提供密码在所有生产环境中都被使用,随着bea被收购,及Weblogic的发展,其位置发生了改变。boot.properties内容为boot.properties##############################username={your_username}password={your_password}###############..
分类:
Web程序 时间:
2014-06-25 06:16:00
阅读次数:
396
在linux中运行命令行时,会输出一些日志信息,特别典型的是启用WebLogic命令时,输出一些信息,当启用demon模式运行时,又想收集这些信息咋办?
解决的办法就是使用输出重定向,如下面的命令:
nohup ./startWebLogic.sh > app.log 2>&1 &
这是什么意思呢?
其中app.log是保存输出的文件名称;
2>&1 表示不仅命令行正...
分类:
其他好文 时间:
2014-06-22 18:52:55
阅读次数:
459
The Java Authentication and Authorization Service (JAAS) is a standard extension to the security in the J2SE Development Kit 5.0. JAAS provides the ab...
分类:
Web程序 时间:
2014-06-21 13:45:27
阅读次数:
310
The following topics are covered in this section:JAAS and WebLogic ServerJAAS Authentication Development EnvironmentWriting a Client Application Using...
分类:
编程语言 时间:
2014-06-21 11:17:39
阅读次数:
198
1、在/home/bea/startBeaAll目录内创建一个startBeaAll.sh文件,加入如下内容(把相应目录与命令修改即可,红字部分为修改地方):#!/bin/shecho "======weblogic start begin========"echo "======managerSe...
分类:
Web程序 时间:
2014-06-20 19:03:38
阅读次数:
845