You need to consider several issues before creating or augmenting a profile.
The WebSphere Process Server Profile wizard augments a WebSphere Application Server or WebSphere Application Server Network Deployment profile into a WebSphere Process Server profile by automatically applying individual profile templates to it in a specific order. Each profile template is listed as an augmentor template for that profile in the profileRegistry.xml file, which is located in the directory install_root/properties/ (on Linux and UNIX platforms) or install_root\properties\ (on Windows platforms).
The following example shows how to remove all WebSphere Process Server augmentations from a WebSphere Process Server profile named Dmgr01 and then how to delete the profile. After each command, the related contents of the profileRegistry.xml file are typed out so you can see the augmentors being removed one at a time.
The example is shown on a Windows system. The example install_root is E:\ProcServer.
E:\ProcServer\properties>type profileRegistry.xml <?xml version="1.0" encoding="UTF-8"?> <profiles> <profile isDefault="true" name="Dmgr01" path="E:\ProcServer\profiles\Dmgr01" template="E:\ProcServer\profileTemplates\dmgr"> <augmentor template="E:\ProcServer\profileTemplates\dmgr.wbicore"/> <augmentor template="E:\ProcServer\profileTemplates\dmgr.bfm"/> <augmentor template="E:\ProcServer\profileTemplates\dmgr.wbiserver"/> </profile> </profiles>
E:\ProcServer\properties>e:\ProcServer\bin\wasprofile -unaugment -profileName Dmgr01 INSTCONFSUCCESS: Profile unaugmentation succeeded.The profileRegistry.xml file now shows that the dmgr.wbiserver augmentor no longer exists for the profile:
E:\ProcServer\properties>type profileRegistry.xml <?xml version="1.0" encoding="UTF-8"?> <profiles> <profile isDefault="true" name="Dmgr01" path="E:\ProcServer\profiles\Dmgr01" template="E:\ProcServer\profileTemplates\dmgr"> <augmentor template="E:\ProcServer\profileTemplates\dmgr.wbicore"/> <augmentor template="E:\ProcServer\profileTemplates\dmgr.bfm"/> </profile> </profiles>
E:\ProcServer\properties>e:\ProcServer\bin\wasprofile -unaugment -profileName Dmgr01 INSTCONFSUCCESS: Profile unaugmentation succeeded.
E:\ProcServer\properties>type profileRegistry.xml <?xml version="1.0" encoding="UTF-8"?> <profiles> <profile isDefault="true" name="Dmgr01" path="E:\ProcServer\profiles\Dmgr01" template="E:\ProcServer\profileTemplates\dmgr"> <augmentor template="E:\ProcServer\profileTemplates\dmgr.wbicore"/> </profile> </profiles>
E:\ProcServer\properties>e:\ProcServer\bin\wasprofile -unaugment -profileName Dmgr01 INSTCONFSUCCESS: Profile unaugmentation succeeded.
E:\ProcServer\properties>type profileRegistry.xml <?xml version="1.0" encoding="UTF-8"?> <profiles> <profile isDefault="true" name="Dmgr01" path="E:\ProcServer\profiles\Dmgr01" template="E:\ProcServer\profileTemplates\dmgr"> </profile> </profiles>
E:\ProcServer\properties>e:\ProcServer\bin\wasprofile -delete -profileName Dmgr01 INSTCONFSUCCESS: Profile deletion succeeded.
E:\ProcServer\properties>type profileRegistry.xml <?xml version="1.0" encoding="UTF-8"?> <profiles></profiles>
After you have reviewed these prerequisites, return to the topic from which you accessed this one.
Copyright IBM Corporation 2005, 2006.
This information center is powered by Eclipse technology (http://www.eclipse.org)