Member since
12-06-2013
5
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
12-11-2013
05:48 AM
I tryed >>> User.objects.get(username='oozie_sample').delete() >>> User.objects.get(username='sample').delete() >>> But user 'sample' is still present on "useradmin" page... What do I do wrong?
... View more
12-10-2013
01:15 AM
How can I delete user?
... View more
12-06-2013
06:08 AM
We tried to do as described here: https://issues.cloudera.org/browse/HUE-1091 Python 2.6.6 (r266:84292, Jul 10 2013, 22:48:45) [GCC 4.4.7 20120313 (Red Hat 4.4.7-3)] on linux2 Type "help", "copyright", "credits" or "license" for more information. (InteractiveConsole) >>> from django.contrib.auth.models import User >>> User.objects.create(id=1100713, username='oozie_sample') <User: oozie_sample> But we still have an error
... View more