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
Updating an AMS container
The appliance management package includes fixes and new features for the Appliance Management Server. Use the following procedure to replace an AMS container with a newer version of the container.
To replace an AMS container
- Download the AMS container image file for the version that you want to update to from the Veritas Download Center.
- From the server where your container is located, run the following command to stop and remove the container:
docker rm -f <container name or ID>
You can find the container name or ID under the docker ps -a command.
- Import the image file with the following command:
docker load -i <path to image file>
- Verify that the image file loaded with the following command:
docker images
- Run the container with 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 data directory and must match the directory of your original container. 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 name> for the name of the container
-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.1.0
- Log in to the Appliance Management Console and make sure that you can see the previously registered appliances. Perform a test operation such as staging to make sure that everything works properly.