Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: notes from the dev list on changing the admin password

...

Table of Contents
minLevel3

Administration

How do I change Jackrabbit's admin password?

Using the userManager:

Code Block

   curl \ 
    -F"oldPwd=admin" \
    -F"newPwd=Fritz" \   
    -F"newPwdConfirm=Fritz" \
    http://admin:admin@localhost:8080/system/userManager/user/admin.changePassword.html     

You may also have to set that password in the Felix Web Management Console (/system/console/configMgr) under "Apache Sling Embedded JCR Repository."

RESTful API

How do I create a node by posting a json document to a URL?

...