Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Remove or Delete existing Websphere Application Server's profile

Tags:

java

websphere

I want to remove Websphere Application Server profile and its service from my machine.

In Profile management tool i could see only option to create a profile and there is no option to delete existing profile

so how to delete and remove service of existing profile?

like image 504
Sasikumar Murugesan Avatar asked May 26 '15 11:05

Sasikumar Murugesan


People also ask

How do I delete an 8.5 profile?

Delete the profile using one of these commands: On Windows: was_install_dir \bin\manageprofiles. bat –delete –profileName profile. On UNIX/Linux: was_install_dir /bin/manageprofiles.sh –delete –profileName profile.

What is WebSphere Application Server profile?

A profile is the set of files that define the runtime environment of a WebSphere® Application Server. Important: Applicable to WebSphere Application Server traditional. A need for more than one profile one server is common.


1 Answers

  1. First list out all profiles in your environment by using manageprofiles command.

    ex:WAS_Home/bin/manageprofiles.bat -listProfiles
    
  2. Stop all servers which are related to that profile.

  3. Stop node agents, dmgr process which are related to that profiles.
  4. Follow the syntax to delete profile using manageprofiles command Syntax:

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

    manage profiles command has more options like username,password.

  5. After deleting profiles check list of profiles using manageprofiles command.

    manageprofiles.bat -listProfiles
    
like image 152
Leo.pd Avatar answered Sep 20 '22 05:09

Leo.pd