Tuesday, August 28, 2012

Disabling and enabling the Weblogic 12c Administration Console

To disable:

1. Select your domain name in the Domain Structure panel of the console(as base_domain below).



     2. Select Configuration | General, and click Advanced at the bottom of the page, and unselect Console Enabled.

OR

Using WLST:-

connect("username","password")
edit()
startEdit()
cmo.setConsoleEnabled(false)
save()
activate()
disconnect()
exit()

3. To enable, you can use WLST. The following code shows how to do it:

connect("username","password")
edit()
startEdit()
cmo.setConsoleEnabled(true)
save()
activate()
disconnect()
exit()

 

No comments: