はじめに
NetAppのストレージOS「ONTAP」をGUIで管理できるONTAP System Managerは主にクラスタ管理者視点での操作でしたが、ONTAP 9.19.1から、各Storage Virtual Machine(SVM)ごとにGUIによる管理操作を行えるようになっています。
テナントごとのセルフサービス運用を意識した内容にはなってますが、現時点で操作できる範囲はVolume関連の設定に限られます。本記事では、SVMを作成して実際にGUIからVolume作成の実施について記載したします。
記事における環境情報
本記事では、以下の環境で実施した内容となります。
分かり易くするために、Network構成は単純化しています。
- ONTAP:9.19.1RC1
SVMへのGUI接続手順
マニュアルではSVM作成や必要な設定についてSystem Managerからの操作となっていますが、本記事ではCLIで設定してからGUIアクセスを実施します。
1. SVMの作成及び設定
1-1. SVMの新規作成
SVMの作成を実施します。
> vserver create -vserver svm001 -subtype default
[Job 140] Job succeeded:
Vserver creation completed.
1-2. SVMへAggregate listの設定
作成したSVMがVolume作成時に利用できるAggregateを設定します。
> vserver modify -vserver svm001 -aggr-list cluster1_01_SSD_1
Warning: Aggregate "cluster1_02_SSD_1" has volumes belonging to Vserver "svm001".
Aggregae Listの設定を忘れた状態でSVMへのVolume作成を実施すると以下のようなエラーが表示されます。
1-3. SVMへLIFの作成
ここではCIFSアクセス用とGUIアクセス用の管理LIFを作成します。
本記事の例では192.168.0.201がGUIアクセス用の管理LIFとなります。
# DataLIFの作成
> net int create -vserver svm001 -lif data01 -service-policy default-data-files -address 192.168.0.200 -netmask 255.255.255.0 -home-node cluster1-01 -home-port e0d
(network interface create)
# 管理LIFの作成
> net int create -vserver svm001 -lif mgm01 -service-policy default-management -address 192.168.0.201 -netmask 255.255.255.0 -home-node cluster1-01 -home-port e0d
(network interface create)
# 作成したLIFの確認
> net int show -vserver svm001
(network interface show)
Logical Status Network Current Current Is
Vserver Interface Admin/Oper Address/Mask Node Port Home
----------- ---------- ---------- ------------------ ------------- ------- ----
svm001
data01 up/up 192.168.0.200/24 cluster1-01 e0d true
mgm01 up/up 192.168.0.201/24 cluster1-01 e0d true
2 entries were displayed.
1-4. SVMのアカウント設定
本記事ではSVMに最初から作成されるvsadminにパスワード設定と、Lockの解除を実行しGUIアクセス時のアカウントとして使用します。
# vsadminユーザへPassword設定
> security login password -vserver svm001 -username vsadmin
Enter a new password:
Enter it again:
# デフォルトでLockされているvsadminのLock解除
> security login unlock -vserver svm001 -username vsadmin
> security login show -vserver svm001
Vserver: svm001
Second
User/Group Authentication Acct Authentication
Name Application Method Role Name Locked Method
-------------- ----------- ------------- ---------------- ------ --------------
vsadmin http password vsadmin no none
vsadmin ontapi password vsadmin no none
vsadmin ssh password vsadmin no none
3 entries were displayed.
1-5. SVMへのプロトコル設定
本記事ではActiveDirectory統合を行いCIFSアクセスができるように設定します。
# 参照先DNSの設定
> vserver services dns create -vserver svm001 -domains demo.netapp.com -name-servers 192.168.0.253
Warning: Only one DNS server is configured. Configure more than one DNS server to avoid a single-point-of-failure.
# ActiveDirectoryへの統合
> vserver cifs create -vserver svm001 -cifs-server svm001 -domain demo.netapp.com
In order to create an Active Directory machine account for the CIFS server, you must supply the name and password of a
Windows account with sufficient privileges to add computers to the "CN=Computers" container within the
"DEMO.NETAPP.COM" domain.
Enter the user name: administrator
Enter the password:
Notice: SMB1 protocol version is obsolete and considered insecure. Therefore it is deprecated and disabled on this
CIFS server. Support for SMB1 might be removed in a future release. If required, use the (privilege: advanced)
"vserver cifs options modify -vserver svm001 -smb1-enabled true" to enable it.
2. SVMへのGUIアクセス
上記で作成した管理LIFへブラウザからアクセスを実施します。
(自己証明書なので、この接続ではプライバシーが保護されませんが表示される)
3. SVMでVolumeの作成
表示された画面の左側の[ストレージ]=>[ボリューム]をクリックし、表示された画面で[追加]をクリックします。
名前やサイズ等を入力して作成を実施します。
GUIにおけるVolume作成のサイズに関しての注意点は、前回の記事を参考にしてください。
4. クライアントからのアクセス
Windowsクライアントからアクセスできる事を確認します。


