Showing posts with label WLST. Show all posts
Showing posts with label WLST. Show all posts

Thursday, October 21, 2010

WLST Simplified..!!

Hello All,

After a long gap I am posting in this blog again, as I was stuck with my Photography interests and the result is my new blog : http://magical-shots.blogspot.com, please visit once and share some views if you really like it..!!

In last few days I was busy with a nice tool/application which is developed by Collabnet for use with WebLogic Server various versions called WLNav (WebLogic Navigator), its very nice tool if you really want to get rid of WLST's Black Screen and Commands, You can find this tool @ http://wlnav.open.collab.net/

Its basically built on WLST and accesses all MBean Information of WebLogic server, so give it a try, download it from the above link and Deploy it on desired server and access the application providing username and password for WebLogic server for the application interface, and then you will see how good the application is designed..

Please Note : You Should know basics of WLST to actually understand this, if you need any understanding about WLST, please let me know, I will be really happy to post WLST Topics on demand.!!


Sample Picture of this Application :














Please share comments if you like..!!

Thanks
Shailesh Dyade

Thursday, June 3, 2010

WLS : Enable the Administration Console : How.?

Hello All,

This can be where rare situation where in you have got a problem like, Admin console got disabled and you want to enable it back, How do you go about it.??

Here is the Solution :

Try to execute the following script after executing the startup script (startWeblogic.cmd or startWeblogic.sh).


connect("username","password","t3://hostname:portnumber")
edit()
startEdit()
cmo.setConsoleEnabled(true)
save()
activate()
disconnect()
exit()

once execute the above script then restart the server & try to access the console using the URL

Please let me know if  you have any issues with above commands.

Thanks
Shailesh Dyade