Administration Console Online Help

Previous Next Open TOC in new window
Content starts here

Delete the Administration Server


You cannot delete a server that is currently active; therefore, you cannot use the Administration Console to delete the current Administration Server. (The Administration Console runs on the Administration Server.) To delete the server instance that you are using as an Administration Server, use the WebLogic Scripting Tool.

  1. If you have not already done so, in the Change Center of the Administration Console, click Lock & Edit (see Use the Change Center).
  2. Shut down all Managed Server instances in the domain. See Start and stop servers.
  3. Invoke the WebLogic Scripting Tool. See Invoking WLST.
  4. Using WLST online, change the AdminServerName attribute.
    connect()
    edit()
    startEdit()
    cmo.setAdminServerName("newAdmin")
    activate()
  5. Shutdown the Administration Server.
    shutdown()
  6. Backup and move the Administration Server data to the new Administration Server. See Backup and Recovery Scenarios for Oracle WebLogic Server: 10.3.
  7. From the command line, set the new Administration Server name and start the server instance as the Administration Server with the startWebLogic script.
    DOMAIN_HOME > set SERVER_NAME=newAdmin
    DOMAIN_HOME > startWebLogic.cmd
    See Starting an Administration Server with a Startup Script.
  8. Start the Administration Console for the newly-started server.
  9. Use the Administration Console to delete the server instance that you were previously using as the Administration Server. See Delete Managed Servers.
  10. To activate these changes, in the Change Center of the Administration Console, click Activate Changes.
    Not all changes take effect immediately—some require a restart (see Use the Change Center).

Back to Top