Removing configuration objects with the wsadmin tool

Use this task to delete a configuration object from the configuration repository. This action only affects the configuration.

About this task

If a running instance of a configuration object exists when you remove the configuration, the change has no effect on the running instance.

Procedure

  1. Inicie a ferramenta de script wsadmin.
  2. Assign the ID string that identifies the server that you want to remove:

    Using Jacl:

    set s1 [$AdminConfig getid /Node:mynode/Server:myserver/]

    Using Jython:

    s1 = AdminConfig.getid('/Node:mynode/Server:myserver/')
    Table 1. AdminConfig getid command description. The following table describes the AdminConfig getid command.
    Element Description
    set is a Jacl command
    s1 is a variable name
    $ is a Jacl operator for substituting a variable name with its value
    AdminConfig is an object that represents the WebSphere® Application Server configuration
    getid is an AdminConfig command
    Node is an object type
    mynode is the host name of the node from which the server is removed
    Server is an object type
    myserver is the name of the server to remove
  3. Remove the configuration object. For example:
    • Using Jacl:

      $AdminConfig remove $s1
    • Using Jython:
      AdminConfig.remove(s1)
    Table 2. AdminConfig remove command description. The following table describes the AdminConfig remove command.
    Element Description
    $ is a Jacl operator for substituting a variable name with its value
    AdminConfig is an object that represents the WebSphere Application Server configuration
    remove is an AdminConfig command
    s1 evaluates the ID of the server that is specified in step number 2
  4. Save the configuration changes.
    Utilize o seguinte exemplo de comando para salvar suas alterações de configuração:
    AdminConfig.save()
  5. In a network deployment environment only, synchronize the node.
    Utilize os scripts syncActiveNode ou syncNode na biblioteca de scripts AdminNodeManagement para propagar as alterações de configuração para o(s) nó(s).
    • Utilize o script syncActiveNodes para propagar as alterações para cada nó na célula, conforme demonstra o seguinte exemplo:
      AdminNodeManagement.syncActiveNodes()
    • Utilize o script syncNode para propagar as alterações para um nó específico, conforme demonstra o seguinte exemplo:
      AdminNodeManagement.syncNode("myNode")

Results

The application server configuration no longer contains a specific server object. Running servers are not affected.

Ícone que indica o tipo de tópico Tópico de Tarefa



Ícone de registro de data e hora Última atualização: July 9, 2016 7:58
http://www14.software.ibm.com/webapp/wsbroker/redirect?version=cord&product=was-nd-mp&topic=txml_removeserver
Nome do arquivo: txml_removeserver.html