Please enter search query.
Search <book_title>...
NetBackup™ Web UI Cloud Administrator's Guide
Last Published:
2023-03-31
Product(s):
NetBackup (10.2)
- Managing and protecting cloud assets
- Configure Snapshot Manager's in NetBackup
- Managing intelligent cloud groups
- Protecting cloud assets or intelligent cloud groups
- About protecting Microsoft Azure resources using resource groups
- About the NetBackup Accelerator for cloud workloads
- Protecting PaaS assets
- Installing the native client utilities
- Add credentials to a database
- Recovering cloud assets
- Performing granular restore
- Troubleshooting protection and recovery of cloud assets
Creating an IAM database username
To create an IAM username:
- Enable IAM DB authentication on the RDS DB instance.
- Create Database user using master login (rds_iam
For MySQL create the username using master login (rds_iam):
mysql --protocol=tcp --host=instance_fqdn --user=admin -p --port=3306
CREATE USER iamuser IDENTIFIED WITH AWSAuthenticationPlugin as 'RDS';
GRANT SELECT, INSERT, UPDATE, DELETE, CREATE, DROP, RELOAD, PROCESS, REFERENCES, INDEX, ALTER, SHOW DATABASES, LOCK TABLES, CREATE VIEW, SHOW VIEW, CREATE ROUTINE, ALTER ROUTINE, EVENT, TRIGGER ON *.* TO `iamuser`@'%' WITH GRANT OPTION;
For PostgreSQL create the user under server.
psql -h instance_fqdn -U postgres
CREATE USER iamuser WITH LOGIN;
GRANT rds_iam TO iamuser;
ALTER ROLE iamuser WITH LOGIN CREATEDB;
GRANT postgres TO iamuser;
- Attach the RDS policy to the IAM role attached to the NetBackup media server.