Delete Admin Server for a running Weblogic domain
Delete Admin Server for a running Weblogic domain
There would be scenarios in prod/dev environments which warrants us to create a new / stand by AdminServer, you may follow the below gives steps to achive the same.
You cannot use the Administration Console to delete the Administration Server as the admin console runs on the Administration Server
Try these steps:
- Create a new server name: newAdminServer (say port number: 8001)
- Stop all running servers in the domain on which you are working on
- Start the new server as admin server: java -Dweblogic.Name= newAdminServer weblogic.Server
- Start the Administration Console for the newly-started server http://ip:8001/console
- Delete the default admin server form the console
Cheers :)
Unni