Monitor Weblogic Stuck Threads - WLST Script

In this post, we are going to share the Weblogic Stuck Thread Monitoring Script which will automatically trigger an email notification and create heap and thread dumps when the maximum Thread stuck count has reached the threshold ( currently set to 10 but can be modified.) This is written with[...]

Read more

Weblogic User Creation Script WLST

The Objective The purpose of this post to share the WLST script which helps in creating a new user in weblogic 11g or 12c and map them to righteous Group for privileges. Like Administrators, Deployers, Monitors etc.   Version Compatibility Weblogic 12c (or) 11g   The Properties file This is[...]

Read more

Weblogic Application Status Script WLST

To Get the Deployed Application Status in the Weblogic Domain, you can use the following python script and run it with WLST. It has nice Formatting and this post also covers "How to ignore or avoid the weblogic informational messages while running the WLST script" Copy the Script given below[...]

Read more
Weblogic Application Status WLST

How to Avoid WLST Information Messages and Run the scripts Silently

While running the WLST scripts, You might have come across the informational messages as follows and additional empty lines. Initializing WebLogic Scripting Tool (WLST) ... Welcome to WebLogic Server Administration Scripting Shell Type help() for help on available commands Connecting to t3://web.mwinventory.in:33011 with userid weblogic ... Successfully connected to Admin[...]

Read more

Weblogic WLST storeuserconfig - Security Best Practice

Overview While connecting to Weblogic Scripting Tool  (WLST) or while running any WLST scripts, we might have used the clear text username and password which could lead us to any potential security threat. In order to avoid it, Oracle recommends us to use the UserConfigFile and UserKeyFile where ever applicable. Best example where you[...]

Read more

weblogic server status script - WLST

A Small and Simple script to get all the server status from the weblogic domain, Including AdminServer & Managed Server. The Jython Script How to Execute this script Copy the preceding script content to a file, let's say /tmp/get_wls_serverstate.py cd domain/bin . ./setDomainEnv.sh java weblogic.WLST /tmp/get_wls_serverstate.py Script Output  Hope this[...]

Read more