Questions tagged [wlst]

WLST (WebLogic Scripting Tool) is a command-line scripting environment that can be used to create, manage, and monitor WebLogic domains. It is based on the Java scripting interpreter, Jython.

WLST (WebLogic Scripting Tool) is a command-line scripting environment that can be used to create, manage, and monitor WebLogic domains. It is based on the Java scripting interpreter, Jython. In addition to supporting standard Jython features such as local variables, conditional variables, and flow control statements, WLST provides a set of scripting functions (commands) that are specific to WebLogic Server. To expertise in this you might need basic knowledge of any programming language is must. Most of the tricks are useful from Python and Jython scripting.

Satya Gattu started developing this WLST Project for WebLogic 8.1 in while working in BEA Systems (acquired by Oracle on April 29, 2008). Its usage and popularity increased from WebLogic 9 version onwards. It has wide scope for not using WebLogic Administration console for various configuration and monitor various System resources performance.

Oracle Fusion Middleware 11g provided a wonderful IDE for WLST developers. It is having full scope for MBean navigation, introspection to classes which you are going to use. Every IDE provides SyntaxHighlighting.

Write your questions on WLST, Python, Jython related System administration tasks. Keep getting the responses around the world from the best scripting experts.

Helpful References

349 questions
-1
votes
1 answer

Assigning variable for dynamic filename in Python

I am new to python scripting and am required to build a script for WebLogic Server. The requirement is to use a file (type .rpd) from assigned location for deployment. The file type would remain same throughout, however, the file name would change.…
S Anand
  • 1
  • 1
-1
votes
2 answers

Unable connect WLST to Admin Server

I new in Weblogic and WLST I write script connect WLST to Admin Server by Jython but I revecied error when connect. WLSTException: Error occured while performing connect : Error getting the initial context. There is no server running at…
-3
votes
1 answer

Python, if a condition is met, ignore step

I am somewhat of a beginner but I am working on wlst script that basically, if the server_name starts with soa_sever(n) but if soa_server2+ add a two minute sleep. def rollstartCluster(): connectAdmin() serverList=cmo.getServers() …
-6
votes
1 answer

While loop exits before all conditions are met

I wrote a script in python to start up servers. In a loop I'm checking their states, to make sure that all servers are up, before going forward. But somehow the loop exits before all conditions are met. Any ideas on why this happens? #check if all…
1 2 3
23
24