|
我看了相关文档,根据文档主要弄了密码文件还有设置setDomainEnv.sh文件
密码文件我使用weblogic的用户:system 00000000(请教下能不能使用这个呢?这个是weblogic配置时候的用户)
setDomainEnv.sh文件中如下修改,多了后面几个地方!
(其中密码那个文件,我已经执行了chmod 600 jmxremote.password)
JAVA_OPTIONS="${JAVA_OPTIONS} -Dcom.sun.management.jmxremote -Dcom.sun.management.jmxremote.port=49004 -Dcom.sun.management.jmxremote.pwd.file=/home/app/jconsole/jmxremote.pwd -Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmxremote.ssl=false"
export JAVA_OPTIONS
PS:还有另外一种方法
JAVA_OPTIONS="${JAVA_OPTIONS}
-Djava.rmi.server.hostname=192.168.60.41 #添加的参数
-Dcom.sun.management.jmxremote.port=22801 #添加的参数
-Dcom.sun.management.jmxremote.pwd.file=/home/branchuw/software/java5/sdk/jconsole/jmxremote.pwd #添加的参数
-Dcom.sun.management.jmxremote.ssl=false 添加的参数
-Dcom.sun.management.jmxremote.authenticate=false #添加的参数
${JAVA_PROPERTIES}
-Dwlw.iterativeDev=${iterativeDevFlag}
-Dwlw.testConsole=${testConsoleFlag} -Dwlw.logErrorsToConsole=${logErrorsToConsoleFlag}"
这个我也弄过,其结果也是一样的提示!
结果都是提示:
-agentlib:<libname>[=<options>]
load native agent library <libname>, e.g. -agentlib:hprof
see also, -agentlib:jdwp=help and -agentlib:hprof=help
-agentpath:<pathname>[=<options>]
load native agent library by full pathname
-javaagent:<jarpath>[=<options>]
load Java programming language agent, see java.lang.instrument
-splash:<imagepath>
show splash screen with specified image
./bin/startWebLogic.sh[195]: popd: not found. |
|