Question & Answer
Question
How to remove one of the activated modules (e.g. Web, Access control or Federation) from ISAM appliance?
Answer
LMI console shows following "Activated modules" in ISAM appliance (screen captured from ISAM appliance v9.0.1):
The only way to remove the "Activated modules" is to use REST API.
(1) Retrieve all activation offerings
curl -k -u admin:<password> -H 'Accept: application/json' -X GET https://<appliance_hostname>/isam/capabilities/v1
Output:
[{"name":"ISAM Base Appliance","description":"IBM Security Access Manager Base Appliance","id":"wga","enabled":"True"},
{"name":"ISAM Federation","description":"IBM Security Access Manager Federation","id":"federation","enabled":"True"},
{"name":"ISAM Advanced Access Control","description":"IBM Security Access Manager Advanced Access Control","id":"mga","enabled":"True"}]
(2) Deleting an activation offering
curl -k -u admin:<password> -H 'Accept: application/json' -X DELETE https://{appliance_hostname}/isam/capabilities/{id}/v1
curl -k -u admin:<password> -H 'Accept: application/json' -X DELETE https://<appliance_hostname>/isam/capabilities/federation/v1
(3) Deploy Changes
curl -k -u admin:<password> -H 'Accept: application/json' -X PUT https://<appliance_hostname>/isam/pending_changes
Output:
{"result":0,"message":"Successfully deployed all pending changes.\n These changes require that the LMI be restarted.","status":4}
(4) Refresh LMI console to verify the deleted "Activated modules" is removed from ISAM appliance.
Related Information
[{"Product":{"code":"SSPREK","label":"Tivoli Access Manager for e-business"},"Business Unit":{"code":"BU059","label":"IBM Software w\/o TPS"},"Component":"General Information","Platform":[{"code":"PF016","label":"Linux"}],"Version":"8.0;9.0","Edition":"","Line of Business":{"code":"LOB24","label":"Security Software"}}]
Was this topic helpful?
Document Information
Modified date:
16 June 2018
UID
swg21992259