Skip to content

Instantly share code, notes, and snippets.

@techtonik
Created July 2, 2012 17:07
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save techtonik/3034305 to your computer and use it in GitHub Desktop.
Save techtonik/3034305 to your computer and use it in GitHub Desktop.
Chef - Reset WebUI admin password
"""Reset admin password in Chef Server WebUI by removing admin user from DB"""
# based on http://lists.opscode.com/sympa/arc/chef/2011-08/msg00151.html
import urllib2
import json
COUCHSERV = 'localhost:5984'
COUCHDB = 'http://' + COUCHSERV + '/chef/'
userson = urllib2.urlopen(COUCHDB + '_design/users/_view/all').read()
users = json.loads(userson)
from pprint import pprint
#pprint(users)
#print json.dumps(users, sort_keys=True, indent=2)
for row in users['rows']:
if row['key'] == u'admin':
id = row['value']['_id']
rev = row['value']['_rev']
url = COUCHDB + id + '?rev=' + rev
import httplib
conn = httplib.HTTPConnection(COUCHSERV)
conn.request('DELETE', url)
print('Admin account removed. Restart Chef WebUI to recreate it with defaults.')
print('For example: sudo service chef-server-webui restart')
break
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment