print 'deploying jar…' connect('weblogic','weblogic123','t3://localhost:7001') try: undeploy('app') print 'Redeploying' except Exception: print 'Deploy' status = deploy(appName='app', path='app.jar',targets='AdminServer,', libraryModule='true') print status
Continue readingCategory: WLST
this category contains posts related to WLST
WLST Script to rotate server log file
You can use the script below to rotate server log files using WLST connect('weblogic','weblogic123','t3://localhost:7001') serverRuntime() cd('LogRuntime/AdminServer') cmo.forceLogRotation() print 'Log file
Continue readingWLST Script to start and stop Datasource
Script to start Datasource connect('weblogic','weblogic123','t3://localhost:7001') domainRuntime() cd('ServerRuntimes/AdminServer/JDBCServiceRuntime/AdminServer/JDBCDataSourceRuntimeMBeans/PegaRULES') objArray = jarray.array([], java.lang.Object) strArray = jarray.array([], java.lang.String) invoke('start', objArray, strArray) exit()
Continue readingConfiguring SSL on Weblogic Server using WLST Script
Create a certs folder in your C Drive and copy the setWLSEnv.cmd from your WL_HOMEbin to this location. Run the
Continue readingAll Server States using WLST
This is an extension to my earlier post which gives the runtime attributes about the alive servers. https://weblogic-wonders.com/weblogic/2011/03/16/weblogic-server-runtime-using-wlst/ However there
Continue readingApplication State Monitoring using WLST
There are scenarios when you would want to monitor the Application state of the currently deployed applications in the Domain
Continue readingMonitoring WebLogic Server Runtime using WLST
There are scenarios when you would want to monitor the properties of your alive servers in the Domain using the
Continue readingRemote Administration Of Domain Through WLST
For administration of the whole domain and all the servers in the domain, we can use WLST commands. This is
Continue readingCreating Datasource using WLST
connect(‘weblogic’,’weblogic’,’t3://localhost:7001′) edit() startEdit() cd(‘/’) cmo.createJDBCSystemResource(‘PegaRULES’) cd(‘/JDBCSystemResources/PegaRULES/JDBCResource/PegaRULES’) cmo.setName(‘PegaRULES’) cd(‘/JDBCSystemResources/PegaRULES/JDBCResource/PegaRULES/JDBCDataSourceParams/PegaRULES’) set(‘JNDINames’,jarray.array([String(‘jdbc/PegaRULES’)], String)) cd(‘/JDBCSystemResources/PegaRULES/JDBCResource/PegaRULES/JDBCDriverParams/PegaRULES’) cmo.setUrl(‘jdbc:sqlserver://localhost:1433’) cmo.setDriverName(‘com.microsoft.sqlserver.jdbc.SQLServerDriver’) cmo.setPassword(‘pega612’) cd(‘/JDBCSystemResources/PegaRULES/JDBCResource/PegaRULES/JDBCConnectionPoolParams/PegaRULES’) cmo.setTestTableName(‘SQL SELECT 1rnrn’) cd(‘/JDBCSystemResources/PegaRULES/JDBCResource/PegaRULES/JDBCDriverParams/PegaRULES/Properties/PegaRULES’) cmo.createProperty(‘user’)
Continue readingA short Article on CMO’s — WLST variables
WLST, CMO’s and Built-in Variables CMO is the WLST in built variable. These are like our JAVA keywords having a
Continue reading