Most viewed recipes tagged "websphere"http://code.activestate.com/recipes/tags/websphere/views/2007-02-05T18:24:13-08:00ActiveState Code RecipesWebSphere - log WAS SESSION performance data to a cloudscape database. (Tcl)
2005-12-12T21:42:50-08:00Patrick Finneganhttp://code.activestate.com/recipes/users/1220635/http://code.activestate.com/recipes/464560-websphere-log-was-session-performance-data-to-a-cl/
<p style="color: grey">
Tcl
recipe 464560
by <a href="/recipes/users/1220635/">Patrick Finnegan</a>
(<a href="/recipes/tags/websphere/">websphere</a>).
</p>
<p>This script logs the WAS SESSION PMI performance data to a Cloudscape database.</p>
WebSphere - log WAS JDBC performance data to a cloudscape database. (Tcl)
2005-12-12T20:50:12-08:00Patrick Finneganhttp://code.activestate.com/recipes/users/1220635/http://code.activestate.com/recipes/464546-websphere-log-was-jdbc-performance-data-to-a-cloud/
<p style="color: grey">
Tcl
recipe 464546
by <a href="/recipes/users/1220635/">Patrick Finnegan</a>
(<a href="/recipes/tags/websphere/">websphere</a>).
</p>
<p>This script logs the WAS JDBC PMI performance data to a Cloudscape database.</p>
WebSphere - log WAS JVM performance data to a cloudscape database. (Tcl)
2005-12-12T21:28:02-08:00Patrick Finneganhttp://code.activestate.com/recipes/users/1220635/http://code.activestate.com/recipes/464559-websphere-log-was-jvm-performance-data-to-a-clouds/
<p style="color: grey">
Tcl
recipe 464559
by <a href="/recipes/users/1220635/">Patrick Finnegan</a>
(<a href="/recipes/tags/websphere/">websphere</a>).
</p>
<p>This script logs the WAS SESSION PMI performance data to a Cloudscape database.</p>
WSAdmin - Extract DataSource Properties (Tcl)
2003-12-17T23:47:37-08:00Patrick Finneganhttp://code.activestate.com/recipes/users/1220635/http://code.activestate.com/recipes/252555-wsadmin-extract-datasource-properties/
<p style="color: grey">
Tcl
recipe 252555
by <a href="/recipes/users/1220635/">Patrick Finnegan</a>
(<a href="/recipes/tags/websphere/">websphere</a>).
</p>
<p>Extract DataSource properties on WebSphere 5 server instance.</p>
<p>Windows platform.</p>
<p>Script called from top level Windows cmd file.</p>
<p>call wsadmin -f C:\scripts\websphere\JACL\extractDataSource.tcl</p>
WebSphere - log WAS JVM performance data to a cloudscape database. (Tcl)
2005-12-12T20:14:01-08:00Patrick Finneganhttp://code.activestate.com/recipes/users/1220635/http://code.activestate.com/recipes/464545-websphere-log-was-jvm-performance-data-to-a-clouds/
<p style="color: grey">
Tcl
recipe 464545
by <a href="/recipes/users/1220635/">Patrick Finnegan</a>
(<a href="/recipes/tags/websphere/">websphere</a>).
</p>
<p>This script logs the WAS JVM PMI performance data to a Cloudscape database.</p>
WSAdmin - Install JDBC DataSource into WebSphere 5.x instance. (Tcl)
2003-12-21T22:03:29-08:00Patrick Finneganhttp://code.activestate.com/recipes/users/1220635/http://code.activestate.com/recipes/259108-wsadmin-install-jdbc-datasource-into-websphere-5x-/
<p style="color: grey">
Tcl
recipe 259108
by <a href="/recipes/users/1220635/">Patrick Finnegan</a>
(<a href="/recipes/tags/websphere/">websphere</a>).
</p>
<p>Install JDBC DataSource into WebSphere 5.x instance setting general, custom and connection properties. Restart server and test connection.</p>
WSAdmin - Install Server. (Tcl)
2004-08-31T22:01:23-07:00Patrick Finneganhttp://code.activestate.com/recipes/users/1220635/http://code.activestate.com/recipes/302884-wsadmin-install-server/
<p style="color: grey">
Tcl
recipe 302884
by <a href="/recipes/users/1220635/">Patrick Finnegan</a>
(<a href="/recipes/tags/websphere/">websphere</a>).
</p>
<p>WSAdmin JACL script to install and set properties for an application server running under WAS 5.1 base installation.</p>
<p>Called by a Windows bat file.</p>
<p>@echo off</p>
<p>set server=YourServer</p>
<p>echo ###################################################
echo # Install %server% on %COMPUTERNAME%
echo ###################################################</p>
<p><a href="http://command.com" rel="nofollow">command.com</a> /c</p>
<p>call wsadmin -username yourname^
-password yourpassword^
-f C:\scripts\websphere\JACL\installServer.tcl %server%</p>
Example - Log WAS JVM PMI performance data to a database. (Tcl)
2005-11-10T20:41:37-08:00Patrick Finneganhttp://code.activestate.com/recipes/users/1220635/http://code.activestate.com/recipes/444767-example-log-was-jvm-pmi-performance-data-to-a-data/
<p style="color: grey">
Tcl
recipe 444767
by <a href="/recipes/users/1220635/">Patrick Finnegan</a>
(<a href="/recipes/tags/websphere/">websphere</a>).
</p>
<p>This script extracts the PMI JVM performance metrics from a WAS 5.1 application server running under ND and writes the data to a Cloudscape database.</p>
dumpThreads (Tcl)
2007-02-05T18:24:13-08:00Patrick Finneganhttp://code.activestate.com/recipes/users/475144/http://code.activestate.com/recipes/502208-dumpthreads/
<p style="color: grey">
Tcl
recipe 502208
by <a href="/recipes/users/475144/">Patrick Finnegan</a>
(<a href="/recipes/tags/websphere/">websphere</a>).
Revision 2.
</p>
<p>Take a java core dump from a running server. Identify the working directory where the file will be placed.</p>
Install MQ Connection Factory. (Tcl)
2005-10-18T22:50:16-07:00Patrick Finneganhttp://code.activestate.com/recipes/users/1220635/http://code.activestate.com/recipes/442453-install-mq-connection-factory/
<p style="color: grey">
Tcl
recipe 442453
by <a href="/recipes/users/1220635/">Patrick Finnegan</a>
(<a href="/recipes/tags/websphere/">websphere</a>).
</p>
<p>Install MQ Connection Factory at node level.</p>
Start Application. (Tcl)
2005-10-18T23:19:37-07:00Patrick Finneganhttp://code.activestate.com/recipes/users/1220635/http://code.activestate.com/recipes/442457-start-application/
<p style="color: grey">
Tcl
recipe 442457
by <a href="/recipes/users/1220635/">Patrick Finnegan</a>
(<a href="/recipes/tags/websphere/">websphere</a>).
</p>
<p>Start Application.</p>
Stop Application. (Tcl)
2005-10-18T23:22:28-07:00Patrick Finneganhttp://code.activestate.com/recipes/users/1220635/http://code.activestate.com/recipes/442458-stop-application/
<p style="color: grey">
Tcl
recipe 442458
by <a href="/recipes/users/1220635/">Patrick Finnegan</a>
(<a href="/recipes/tags/websphere/">websphere</a>).
</p>
<p>Stop Application.</p>
Install Application. (Tcl)
2005-10-18T21:52:26-07:00Patrick Finneganhttp://code.activestate.com/recipes/users/1220635/http://code.activestate.com/recipes/442449-install-application/
<p style="color: grey">
Tcl
recipe 442449
by <a href="/recipes/users/1220635/">Patrick Finnegan</a>
(<a href="/recipes/tags/websphere/">websphere</a>).
</p>
<p>Install application into appserver with multiple options.</p>
WSAdmin - Install Virtual Host. (Tcl)
2004-08-31T22:34:52-07:00Patrick Finneganhttp://code.activestate.com/recipes/users/1220635/http://code.activestate.com/recipes/302885-wsadmin-install-virtual-host/
<p style="color: grey">
Tcl
recipe 302885
by <a href="/recipes/users/1220635/">Patrick Finnegan</a>
(<a href="/recipes/tags/websphere/">websphere</a>).
</p>
<p>Install a virtual host on WebSphere 5.1 base installation.</p>
<p>Called from a Windows bat file.</p>
<p>@echo off</p>
<p>set vhName=your_host
set <a href="http://vh=www.yoursite.com" rel="nofollow">vh=www.yoursite.com</a></p>
<p>echo ###################################################
echo # Install %vhName% on %COMPUTERNAME%
echo ###################################################</p>
<p><a href="http://command.com" rel="nofollow">command.com</a> /c</p>
<p>call wsadmin -username userid^
-password password^
-f C:\scripts\websphere\JACL\installVirtualHost.tcl %vhName% %vh%</p>
Set PMI Request Metrics on. (Tcl)
2005-10-20T23:35:07-07:00Patrick Finneganhttp://code.activestate.com/recipes/users/1220635/http://code.activestate.com/recipes/442467-set-pmi-request-metrics-on/
<p style="color: grey">
Tcl
recipe 442467
by <a href="/recipes/users/1220635/">Patrick Finnegan</a>
(<a href="/recipes/tags/websphere/">websphere</a>).
</p>
<p>Set PMI Request Metrics on. Required for RPA.</p>
WSAdmin - Install JDBC Driver (Tcl)
2003-12-14T23:37:51-08:00Patrick Finneganhttp://code.activestate.com/recipes/users/1220635/http://code.activestate.com/recipes/252532-wsadmin-install-jdbc-driver/
<p style="color: grey">
Tcl
recipe 252532
by <a href="/recipes/users/1220635/">Patrick Finnegan</a>
(<a href="/recipes/tags/websphere/">websphere</a>).
</p>
<p>Install JDBC driver on WebSphere 5 server instance and restart server.
Windows platform.</p>
<p>Script called from top level Windows cmd file.</p>
<p>call wsadmin -f C:\scripts\websphere\JACL\installJDBCDriver.tcl</p>
Install LTPA config details into WAS. (Tcl)
2005-10-18T23:12:15-07:00Patrick Finneganhttp://code.activestate.com/recipes/users/1220635/http://code.activestate.com/recipes/442456-install-ltpa-config-details-into-was/
<p style="color: grey">
Tcl
recipe 442456
by <a href="/recipes/users/1220635/">Patrick Finnegan</a>
(<a href="/recipes/tags/websphere/">websphere</a>).
</p>
<p>Install LTPA config details into WAS.</p>
Install Application Server. (Tcl)
2005-10-18T22:35:37-07:00Patrick Finneganhttp://code.activestate.com/recipes/users/1220635/http://code.activestate.com/recipes/442450-install-application-server/
<p style="color: grey">
Tcl
recipe 442450
by <a href="/recipes/users/1220635/">Patrick Finnegan</a>
(<a href="/recipes/tags/websphere/">websphere</a>).
</p>
<p>Installs application server with multiple custom options.</p>
Install LDAP Configuration details into WAS. (Tcl)
2005-10-18T23:07:51-07:00Patrick Finneganhttp://code.activestate.com/recipes/users/1220635/http://code.activestate.com/recipes/442455-install-ldap-configuration-details-into-was/
<p style="color: grey">
Tcl
recipe 442455
by <a href="/recipes/users/1220635/">Patrick Finnegan</a>
(<a href="/recipes/tags/websphere/">websphere</a>).
</p>
<p>Install LDAP Configuration Details into WAS.</p>
Install MQ Queues. (Tcl)
2005-10-18T22:52:33-07:00Patrick Finneganhttp://code.activestate.com/recipes/users/1220635/http://code.activestate.com/recipes/442454-install-mq-queues/
<p style="color: grey">
Tcl
recipe 442454
by <a href="/recipes/users/1220635/">Patrick Finnegan</a>
(<a href="/recipes/tags/websphere/">websphere</a>).
</p>
<p>Install MQ Queues.</p>