Member since
02-04-2014
2
Posts
0
Kudos Received
0
Solutions
02-05-2014
10:27 PM
You can fix it this way: 1. Determine name of the ALERTPUBLISHER role. Go to ${your-scm-host}:7180/api/v1/cm/service/roles/ Find json with name like '"name" : "mgmt1-ALERTPUBLISHER-107a27c5a1fc39a5cb9ce9ea1947e296",' 2. Using name from step 1, do the following: curl -X PUT -H "Content-Type:application/json" -u admin:admin -d '{"items": [{"name" : "alert_mailserver_password", "value": "SUPER_MEGA_PASSWORD"}]}' '${your-scm-host}:7180/api/v1/cm/service/roles/mgmt1-ALERTPUBLISHER-107a27c5a1fc39a5cb9ce9ea1947e296/config'
... View more