Veritas Appliance Management Guide
- Introduction
- Managing an AMS
- Using the Appliance Management Console
- Managing appliances
- About managing appliance software upgrades
- Managing EEBs and other add-ons
- About staging packages
- About managing services on NetBackup appliances
- Monitoring activities and events
- Managing the repository
- Applying management updates on NetBackup appliances
- Running AMS on NetBackup Virtual Appliance
Configuring AMS as a container
AMS is available as a container to support Flex appliances in addition to NetBackup and NetBackup Virtual appliances.
Note:
You must configure AMS as a container in order to manage Flex appliances.
Before you configure AMS as a container, ensure that you meet the following prerequisites:
You must have a physical or virtual machine with a minimum of 4 CPUs, 16 GB RAM, and 200 GB of persistent disk space.
Your operating system must be one of the following:
RHEL version 7.9 or later
Ubuntu version 18.04 or later
You must have access to a configured Linux server.
You must install Docker version 1.13 or later on the Linux server. Docker Community Edition or Enterprise Edition are supported.
To configure AMS as a container
- Download the AMS container image file from the Veritas Download Center.
- Import the image file to the Linux server using the following command:
$ docker load -i <path to image file>
- Verify that the image file loaded using the following command:
$ docker images
- Create and name a data directory using the following command:
mkdir -p <directory path> where <directory path> is any directory name that you choose.
For example: mkdir -p /home/amsdev/amsdata
Note:
Critical security data is stored in the directory and should be protected as outlined in your company's security policies.
- Open port 443 on the Linux server, if it is not already open. Then run the container using the following command:
docker run -h <hostname> -v <directory>:/data -p 443:443 <image name>:<image tag> where <hostname> is the fully qualified hostname and <directory> is the name of the directory created. You can find the name of the image file and tag from the $ docker images command.
You can also use the following optional parameters:
--name <container service name> for the name of the container service
-d for the container to run in the background
For example:
docker run --name ams-container -d -h <host name> -v /home/amsdev/amsdata:/data -p 443:443 appliancemgmt:2.0.0
- You can now access the Appliance Management Console at https://<hostname>. See Adding a user or user group to an AMS container.