Use the removeEventService command to
remove the event service application from your server.
Purpose
The removeEventService command
is a Common Event Infrastructure administrative
command is available for the AdminTask object. Use this command to
remove the event service from a server or cluster. For more information
about the AdminTask object, see the WebSphere® Application Server
Network Deployment, version 6.1 documentation.
Parameters
- - nodeName
- The name of the node from which the event service should be removed.
If this parameter is specified, then the serverName parameter
must be specified. You must not specify this parameter if the clusterName parameter
is specified.
- - serverName
- The name of the server from which the event service should be
removed. You must specify this parameter if the nodeName parameter
is specified. You must not specify this parameter if the clusterName parameter
is specified.
- - clusterName
- The name of the cluster from which the event service should be
removed. You must not specify this parameter if the nodeName and serverName parameters
are specified.
Sample
Batch mode example usage:
Using Jacl:
$AdminTask removeEventService {-nodeName nodename
-serverName servername}
$AdminTask removeEventService {-clusterName clustername}
Using Jython string:
AdminTask.removeEventService('[-nodeName nodename
-serverName servername]')
AdminTask.removeEventService('[-clusterName clustername]')
Using Jython list:
AdminTask.removeEventService(['-nodeName', 'nodename',
'-serverName', '-servername'])
AdminTask.removeEventService(['-clusterName', 'clustername'])
Interactive mode example usage:
Using Jacl:
$AdminTask removeEventService {-interactive}
Using Jython string:
AdminTask.removeEventService('[-interactive]')
Using Jython list:
AdminTask.removeEventService(['-interactive'])