Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to rename an application server in WebSphere Application Server 6.0.2.23

Tags:

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

How can you rename an application server?

It seems like wsadmin can do it, but I'm struggling with the object hierarchy.

like image 537
Zach Avatar asked Nov 10 '08 21:11

Zach


1 Answers

IBM Sample Scripts

download:

ConfigScripts.zip

from command line execute:

/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

like image 66
ndarkduck Avatar answered Oct 16 '22 18:10

ndarkduck