新規ユーザーの作成
新規ユーザーを作成するには、次の作業を実行します。
Procedure
Step 1 |
DCNM アプライアンスの SSH 端末にログオンします。 |
Step 2 |
create user username コマンドを使用して、新規ユーザーを作成します。 |
Step 3 |
パスワード プロンプトで有効なパスワードを入力します。 |
Step 4 |
create schema username authorization username を使用して、ユーザーと同じ名前を持つ新規スキーマを作成します。 |
Step 5 |
grant all on schema username to username を使用して、スキマーですべての権限を有効にします。 |
Example
次の例は、新規ユーザーを作成するためのコマンドのサンプル出力を示しています。
dcnm# create user user1
password: password
dcnm# create schema user1 authorization user1;
dcnm# grant all on schema user1 to user1;