How to rename an application server in WebSphere Application Server 6.0.2.23

后端 未结 2 1207
滥情空心
滥情空心 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:29

    An easier option if you are running a clustered set up is to create a new cluster member with the required name.

    Delete the old server and keep note of all the ports for the original server and state them as the port numbers for this new server(if you need the same port numbers)

    If you are using a non-clustered environment, then create a template out of the existing server. Create your new server based on that template so you have all the required config. Now like earlier change the port numbers back to the original ones.

    If the change in port numbers are not a problem for you then you don't need to perform that step.

    HTH

    Manglu

    0 讨论(0)
  • 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

    0 讨论(0)
提交回复
热议问题