How to rename an application server in WebSphere Application Server 6.0.2.23

We are redirecting an application server running WebSphere 6.0.2.23. I would like to rename the application server to better reflect its new role.

How can you rename an application server?

It seems wsadmin can do this, but I'm struggling with a hierarchy of objects.

+5
source share
2 answers

IBM Scripting Examples

download:

ConfigScripts.zip

from the command line do:

/usr/IBM/WebSphere/AppServer/profiles/AppSrv01/bin/ws_ant.sh \
-profileName AppSrv01 \
-buildfile exportImport.xml \
-logfile rename.log \
-DoldServerName=server1 \
-DnewServerName=server2 \
-DnodeName=yourNode01 changeServerName

source

+4
source

A simpler option if you are using cluster configuration is to create a new cluster member with the required name.

( )

, . , . , , .

, .

Manglu

+1

All Articles