IBM Websphere Application Server 5.1 init script for Linux
WAS does not seem to install any default init scripts, so I created one. You can configure it to start and stop multiple application servers by listing them all in the APPSERVERS variable (separated by spaces).
#!/bin/sh # chkconfig: 35 99 10 # description: Starts and stops Websphere Application Server . /lib …
IBM SDD driver troubleshooting on Linux
The Subsystem Device Driver [SDD] is a pseudo device driver designed to support the multipath configuration environments in the IBM TotalStorage Enterprise Storage Server, the IBM TotalStorage DS family, the IBM SystemStorage SAN Volume Controller. It resides in a host system with the native disk device driver and provides the …
Starting and stopping IBM Websphere MQ on a Redhat Enterprise Linux box
Here's a little script I made for starting and stopping Websphere MQ on a RHEL 4. It is useful for a simple configuration with one Queue Manager and listener. Just put your queue manager name in the QMGR variable and the listener port to the PORT variable, and save the …