To establish an access point for BVQ, it's necessary to create user accounts on the respective systems you wish to monitor.
For instance, if you have three NetApp clusters, you'll need to create a user account on each cluster.
This procedure is applicable to all systems you aim to connect to BVQ.
After creating a specific new user on a system, proceed to set up a BVQ Scanner on your BVQ Server using that user account.
The BVQ Scanner will then establish a connection to the system to collect the requisite data.
Panel |
---|
borderColor | #248D85 |
---|
titleColor | white |
---|
borderWidth | 3 |
---|
titleBGColor | #248D85 |
---|
borderStyle | solid |
---|
title | IBM SVC preparation |
---|
|
System preparation stepsCreate a BVQ user on the SVC systemFor communication between a SVC system and BVQ, a user account with at least user group 'Monitor' is required on each SVC system. Code Block |
---|
svctask mkuser -name bvq -usergrp Monitor -password <my_secure_password> |
|
| Check NTP, time and time zoneCheck if an NTP server is configured: it is mandatory to use NTP to synchronize the time of all systems (SVC Systems and BVQ Server): Code Block |
---|
svcinfo lssystem | grep 'ntp_IP_address' |
Set your NTP Server: Synchronize your SVC cluster with a specific NTP server: Code Block |
---|
svctask chcluster -ntpip <IP address of NTP Server> |
Adjust SVC cluster time zone: Set the time zone of your SVC cluster with: Code Block |
---|
svctask settimezone -timezone 360 |
Show SVC clock settings: Check the current time setting on your SVC: |
The SVC performance statistics are generated regularly (in intervals) by the SVC and picked up by the BVQ SVC Scanner. BVQ supports all intervals possible in the SVC (1min to 60min). We recommend to set the time interval to 1 minute. Check statistics status and frequency: Use this command to see if and how often your system collects statistics: Code Block |
---|
svcinfo lssystem | while read key value; do [[ "$key" =~ ^(statistics_status|statistics_frequency)$ ]]&& echo "$key $value"; done |
Change statistics collection frequency: Define how often system statistics are collected: Code Block |
---|
startstats -interval <interval_in_minutes> |
|
|
...
Panel |
---|
borderColor | #C2502E |
---|
titleColor | white |
---|
borderWidth | 3 |
---|
titleBGColor | #C2502E |
---|
borderStyle | solid |
---|
title | Dell EMC Unity preparation |
---|
|
A user is required for the operation of the BVQ Scanner, who should at least have Operator Role permissions. Please create this user at your Unity System before the configuration of the BVQ Scanner. We recommend to name the user: bvq Image RemovedImage AddedBVQ scanners need the following information to be configured for each Dell EMC Unity System: |
...
Panel |
---|
borderColor | #2929A9 |
---|
titleColor | white |
---|
borderWidth | 3 |
---|
titleBGColor | #2929A9 |
---|
borderStyle | solid |
---|
title | Netapp preparation |
---|
|
A user with at least 'read-only' role permissions on the ONTAP Cluster is required to operate the BVQ Scanner. Please create this user prior to configuring the BVQ Scanner. We recommend using the name 'bvq' for this user. Ontap CLI Code Block |
---|
sec login create -user-or-group-name bvq -application http -authentication-method password -role readonly
sec login create -user-or-group-name bvq -application ontapi -authentication-method password -role readonly |
|
...