#!/bin/sh # # Start/stop WebSphere Commerce Suite Admin Server, # which runs as an instance of the IBM HTTPD server, # on port 4444. # # This script just provides a simple interface from the standard # /etc/init.d and /etc/rc?.d/[S][K]... scripts, to the # admin server control scripts provided by the IBM websphere install. # # Charles Roth, IBS, 8 Nov 2000. # BASEDIR=/opt/WebSphere/CommerceSuite/server/bin PATH=/sbin:/usr/bin:/usr/sbin export PATH case "$1" in 'start') $BASEDIR/start_admin_server ;; 'stop') $BASEDIR/stop_admin_server ;; esac