Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: add cdot auth steps #1559

Merged
merged 2 commits into from
Nov 29, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions docs/prepare-cdot-clusters.md
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,24 @@ security login create -user-or-group-name harvest2 -application ontapi -role har
security login create -user-or-group-name harvest2 -application http -role harvest2-role -authentication-method cert
```

Verify that an entry is present by running the following commands
```bash
# ZAPI based access
vserver services web access show -role harvest3-role -name ontapi

# REST based access
vserver services web access show -role harvest3-role -name rest
```

If the entry is missing, enable access by running the following
```bash
# ZAPI based access
vserver services web access create -vserver umeng-aff300-01-02 -name ontapi -role harvest2-role

# REST based access
vserver services web access create -vserver umeng-aff300-01-02 -name rest -role harvest2-role
```

#### 7-Mode CLI

Login to the CLI of your 7-Mode ONTAP system (e.g. using SSH). First, we create a user role. If you want to give the
Expand Down