|
|
1 |
Log in as the root user on an auxiliary database station.
|
2 |
Open a console window.
|
3 |
Enter the following:
# cd /opt/nsp/nfmp/auxdb/install/custom-data/bin ↵
|
4 |
Use a plain-text editor to create the following file in the directory that holds the source maintenance-window data:
NodeAvailability_Table.csv
|
5 |
The following define the table columns:
Note: The epoch time must be in milliseconds.
-
maintenanceType—node or service
-
affectedObjec—NE system or site ID, or service name
-
fullnameAffectedObjecteither—either:
-
NE FDN, in the format network:address
-
NFM-P service ID, in the format svc-mgr:service_ID
An NFM-P NE properties form lists the NE system address.
The NFM-P Manage Services form lists NFM-P service IDs.
-
startTime—maintenance window start; Unix epoch time, in milliseconds
-
endTime—maintenance window end; Unix epoch time, in milliseconds
-
description—optional object description; displayed as input option
For example:
maintenanceType,affectedObject,fullnameAffectedObject,startTime,endTime,description
node,203.0.113.169,network:203.0.113.169,1681104600000,1681111800000,Maintenance-1
node,203.0.113.182,network:203.0.113.182,1681129800000,1681138800000,Maintenance-2
service,N/A,svc-mgr:service-1,1681203600,1681210800,Maintenance-3
|
6 |
Save and close the file.
|
7 |
Change the ownership of the file to samauxdb:
# chown samauxdb:samauxdb NodeAvailability_Table.csv ↵
|
8 |
Enter the following to insert the data from the CSV file into the custom table:
# ./customData.bash --importData custom_data.analytics_MaintenanceWindow_ct NodeAvailability_Table.csv ↵
You are prompted for the password of the samauxdb user.
|
9 |
Enter the password.
The file data is imported to the custom_data.analytics_MaintenanceWindow_ct table.
|
10 |
Enter the following:
# cd /opt/vertica/bin ↵
|
11 |
Enter the following:
# ./vsql -U samauxdb ↵
You are prompted for the password of the samauxdb user.
|
12 |
Enter the password.
A database console session opens.
|
13 |
Enter the following:
select * from custom_data.analytics_MaintenanceWindow_ct; ↵
The table data is inserted, and the table content is displayed.
|
14 |
Verify that the table content matches the information provided in the CSV file.
|
15 |
When the verification is complete, enter the following:
\q ↵
The database console session closes.
|
16 |
Close the console window on the auxiliary database station.
End of steps |