Zhou Chunyin
Zhou Chunyin

Reputation: 47

How to edit Weblogic startup scripts to enable the JMX?

I am new to Weblogic. And I want to enable the JMX on Weblogic 12c. As I searched on stackoverflow, I found this:

Add the following JVM parameters to your Weblogic startup scripts:

-Dcom.sun.management.jmxremote -Dcom.sun.management.jmxremote.port=8888 -Dcom.sun.management.jmxremote.ssl=false -Dcom.sun.management.jmxremote.authenticate=false

However I couldn't find this script. So where is it? Thank you very much!

Upvotes: 1

Views: 1034

Answers (1)

Elliott Frisch
Elliott Frisch

Reputation: 201437

There are a few weblogic startup (and shutdown scripts), one for Windows (ending in "cmd") and one for Unix/Linux (ending in "sh"). The filename begins startWebLogic and it was installed in your weblogic/bin folder.

Per the documentation (linked above),

The startWebLogic script does the following:

Sets environment variables by invoking DOMAIN_NAME\bin\setDomainEnv.cmd (setDomainEnv.sh on UNIX), where DOMAIN_NAME is the directory in which you located the domain; for example, WL_HOME\user_projects\domains\DOMAIN_NAME, and where WL_HOME is the location in which you installed WebLogic Server.

Invokes the java weblogic.Server command, which starts a JVM that is configured to run a WebLogic Server instance.

Upvotes: 1

Related Questions