You are on page 1of 2

Lab:

Enabling / Disabling admin console

Disable console first

Open admin console


Click on domain name
go to Genral tab ->Show Advanced Options - > uncheck the box console enabled
Save and restart the server

You cant access console now.

To ENABLE it:

By default, the Administration Console is enabled.


We have just disabled it.

Use the WebLogic Scripting Tool (WLST). Start the Administration Server, then invoke WLST
and use the following commands:

C:\Oracle\Middleware\wlserver_10.3\server\bin>setWLSEnv.cmd

Start WLST by using the command


java weblogic.WLST

connect to admin server by connect() command


execute the following commands

edit()
startEdit()
cmo.setConsoleEnabled(true)
save()
activate()
The following attribute(s) have been changed on MBeans which require server re-start.
MBean Changed : com.bea:Name=mydomain,Type=Domain Attributes changed :
ConsoleEnabled
Activation completed
disconnect()
exit()

now the console should be enabled.

You might also like