You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The "Getting Started" guide wasn't really that; separated it out into a couple other pages. Fixed some issues with bad links as well and some bad grammar.
Also using the same text in the README and the docs/index page for describing the client.
The examples in this documentation depend on a particular MarkLogic username and password. If you
9
+
would like to try these examples out against your own installation of MarkLogic, you will need to create this
10
+
MarkLogic user. To do so, please go to the Admin application for your MarkLogic instance - e.g. if you are running MarkLogic locally, this will be at <http://localhost:8001> - and authenticate as your "admin" user.
11
+
Then perform the following steps to create a new user:
12
+
13
+
1. Click on "Users" in the "Security" box.
14
+
2. Click on "Create".
15
+
3. In the form, enter "python-user" for "User Name" and "pyth0n" as the password.
16
+
4. Scroll down until you see the "Roles" section. Click on the "rest-reader" and "rest-writer" checkboxes.
17
+
5. Scroll to the top or bottom and click on "OK" to create the user.
18
+
19
+
You can verify that you correctly created the user by accessing the REST API for the out-of-the-box REST API
20
+
server in MarkLogic that listens on port 8000. Go to <http://localhost:8000/v1/search> (changing "localhost" to
21
+
the correct name of your MarkLogic host if you are not running it locally) in a web browser and enter the
22
+
username and password for the new user you created. The browser should then display a search response returned by
23
+
MarkLogic, verifying that the user is able to access the MarkLogic REST API.
0 commit comments