How to rename an application server in WebSphere Application Server 6.0.2.23

后端 未结 2 1206
滥情空心
滥情空心 2021-02-09 23:38

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

2条回答
  •  情书的邮戳
    2021-02-10 00:36

    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

提交回复
热议问题