NetBackup™ Administrator's Guide, Volume II
- NetBackup licensing models and usage reporting
- How capacity licensing works
- Creating and viewing the licensing report
- Reviewing a capacity licensing report
- Reconciling the capacity licensing report results
- Reviewing a traditional licensing report
- Reviewing an NEVC licensing report
- Additional configuration
- About dynamic host name and IP addressing
- About busy file processing on UNIX clients
- About the Shared Storage Option
- DELETE About configuring the Shared Storage Option in NetBackup
- Viewing SSO summary reports
- About the vm.conf configuration file
- Holds Management
- Menu user interfaces on UNIX
- About the tpconfig device configuration utility
- About the NetBackup Disk Configuration Utility
- Reference topics
- Host name rules
- About reading backup images with nbtar or tar32.exe
- Factors that affect backup time
- NetBackup notify scripts
- Media and device management best practices
- About TapeAlert
- About tape drive cleaning
- How NetBackup reserves drives
- About SCSI persistent reserve
- About the SPC-2 SCSI reserve process
- About checking for data loss
- About checking for tape and driver configuration errors
- How NetBackup selects media
- About Tape I/O commands on UNIX
NetBackup for MySQL Agent
Licensing for MySQL is specific to the DataStore policy for protecting MySQL Instances. NetBackup collects the data for any MySQL backup that can be restored.
In the case of MySQL, the sizing information is gathered by listing the size of the Instance data directory of MySQL.
The following commands and queries are used to verify the size that the accurate licensing method reports:
Windows platform
Lists the files on the system and their sizes.
Dir <Instance data directory>
Get the database size using MySQL query.
SELECT ROUND(SUM(data_length + index_length), 1) FROM information_schema.tables WHERE table_schema = 'DBNAME' GROUP BY table_schema;
Linux Platform
Lists the files on the system and their sizes.
ls <Instance data directory>
Get the database size using MySQL query.
SELECT ROUND(SUM(data_length + index_length), 1) FROM information_schema.tables WHERE table_schema = 'DBNAME' GROUP BY table_schema;