I have set up an admin password via command prompt as shown in the AEM documentation, but unfortunately i have forgot the password of the admin, is there any way to recover the admin password.?
Thanks,
VAr
Views
Replies
Total Likes
Please have a look at this post:-Changing User Passwords in AEM 6.1 via cURL | 6D Labs
// It covers Changing User Passwords in AEM 6.1 via cURL
If you know the user's path then try, curl -u admin:admin -F rep:password="aem6dev" -F:currentPassword="admin" http://<<<CUT>>>:4502/home/users/a/admin.rw.html
Source:- #AEM #CURL Change Admin Password · GitHub
~kautuk
Views
Replies
Total Likes
Thanks Kautuk,
but unfortunate is i don't remember the exact node path of admin user as AEM creates the user node with random node some thing like example " /home/users/H/H7K-n3ZqABjdb0Wesk0w". Is there any other way to reset the password.?
VAr
Views
Replies
Total Likes
Did you chek Changing User Passwords in AEM 6.1 via cURL | 6D Labs ?
//
1. call the Query Builder via cURL to get the path to the user:
curl -s -u admin:admin -X GET "http://localhost:4502/bin/querybuilder.json?path=/home/users&1_property=rep:authorizableId&1_propert...{USER_NAME}&p.limit=-1" > user.json
2. Read the path from the JSON result:
USER_PATH=`ruby -rjson -e 'j = JSON.parse(File.read("user.json")); puts j["hits"][0]["path"]'`
3. USER_PATH variable can be used to set the user's password:
curl -s -u admin:admin -Fplain={NEW_PASSWORD} -Fverify={NEW_PASSWORD} -Fold={OLD_PASSWORD} -FPath=$USER_PATH http://localhost:4502/crx/explorer/ui/setpassword.jsp
Putting it all together, if I wanted to change the admin user's password I would call:
curl -s -u admin:admin -X GET "http://localhost:4502/bin/querybuilder.json?path=/home/users&1_property=rep:authorizableId&1_propert..." > user.json
USER_PATH=`ruby -rjson -e 'j = JSON.parse(File.read("user.json")); puts j["hits"][0]["path"]'`
curl -s -u admin:admin -Fplain=admin1 -Fverify=admin1 -Fold=admin -FPath=$USER_PATH http://localhost:4502/crx/explorer/ui/setpassword.jsp
~kautuk
Views
Replies
Total Likes
If i forgot the admin password, will the below curl query works.? where as in curl -s -u admin:admin -X admin:admin is the admin user name and password.
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies
Views
Likes
Replies