A quick tutorial for middleware products

  • WeblogicArch

  • J2EEArch

  • FussionArch

Friday, April 10, 2015

On April 10, 2015 by Kamlesh   1 comment
WLST Script for Monitoring the JMS status of Weblogic Domain After long time writing something about WLST WLST has some good features like we can monitor the weblogic domain, monitor JMS Cluster, Datasource target and untarget etc. In this post I am explaining about how to monitor JMS Cluster like message count, pending message etc. by WLST script. Step by step explaining how to prepare...
On April 10, 2015 by Kamlesh   6 comments
WLST Script for checking the health status of Weblogic Domain (Admin/Managed node) After long time writing something about WLST WLST has some good features like we can monitor the weblogic domain, monitor JMS Cluster, Datasource target and untarget etc. In this post I am explaining about how to monitor Weblogic domain like Server State, Server Health, Listen Port, Listen Addresses etc. by...

Saturday, November 22, 2014

On November 22, 2014 by Kamlesh   2 comments
How to Deploy Application using WLST We can use WLST to quickly deploy an Application in a Weblogic Server. Requirement:- ·The ear/war/rar/jar file (uploaded to a directory in the target WebLogic Server ) ·A simple WLST script ·Credentials for the Weblogic Server (preferably, the weblogic user). ·Write a simple WLST Script to do your work and save it as "deploy.py" print  WEBLOGIC...
On November 22, 2014 by Kamlesh   No comments
WLST Server Start The server of a WebLogic domain can be started using different techniques. The best setup depends on the technical requirements but also on the security/administration guidelines of the company. The following section introduces the different possibilities and will provide best practices information based on real project experience. Administration Server The administration server...
On November 22, 2014 by Kamlesh   No comments
How to create WebLogic Domain using Domain template: 1. Open an existing domain template (assuming WebLogic Server is installed at c:/bea/ wlserver_10.3). In this example, we open the Basic WebLogic Server Domain template. readTemplate('c:/bea/wlserver_10.3/common/templates/domains/wls.jar') wls:/offline/base_domain> 2. Configure the domain. a.    Configure...
On November 22, 2014 by Kamlesh   No comments
Basic concepts of WLST. What is WLST? It is a scripting tool offered by Weblogic. Any way WLST is not only for a sense of control, it’s very powerful and handy for troubleshooting, doing same thing repeatedly. IBM’s Websphere –> wsadmin Oracle Weblogic –> WLST Please don’t get intimated by name. It’s very simple tool.  Few commands are there which are used mostly. We will discuss...