Delete or delete existing Websphere Application Server profile

I want to delete the Websphere application server profile and its service from my machine.

In the profile management tool, I could only see the option to create a profile, and there is no way to delete an existing profile

so how to remove and remove the service of an existing profile?

+4
source share
3 answers
  • First, list all profiles in your environment using manageprofiles .

    ex:WAS_Home/bin/manageprofiles.bat -listProfiles
    
  • Stop all servers associated with this profile.

  • Stop node agents, the dmgr process associated with these profiles.
  • Follow the syntax to delete a profile using the manageprofiles command . Syntax:

    WAS_Rootbin/manageprofiles.bat  -delete -profileName <profile_name>
    

    , , .

  • manageprofiles .

    manageprofiles.bat -listProfiles
    
+7

,

manageProfiles.bat

manageprofiles -delete -profileName <YourProfileName>
+1

. manageprofiles.bat Windows manageprofiles.sh UNIX/Linux, was_install_dir\bin\

, here.

manageprofiles.sh -help

0

All Articles