Posts

Showing posts from December, 2020

Netbackup Cloudpoint Installation and uninstallation steps

 Installation Steps:     1) Install Docker on linux  setup. https://help.veritas.com/vxhelp6/#/content?id=136496668-138126296-0%2Fv133632807-138126296&date=Tue%20Aug%2004%202020%2012:16:11%20GMT%200530%20(India%20Standard%20Time) If u face issue in installation then make below change Edit the /etc/selinux/config configuration file and modify the SELINUX parameter value to SELINUX=disable       2)Download CP build from here Please use the CP builds from this location: http://artifactory-master.engba.veritas.com/artifactory/cloud-data-protect/flexsnap/9.0.1.0 .<build#>/buildarea/ship/ VRTScloudpoint-docker-9.0.1.0.<build#>.img.gz 3) Command to install cloudpoint docker ex wget --no-check-certificate  https://artifactory-master.engba.veritas.com/artifactory/cloud-data-protect/flexsnap/9.0.1.0.9029/buildarea/ship/VRTScloudpoint-docker-9.0.1.0.9029.img.gz      3.a) docker load -i  VRTScloudpoint-d...

Learn Docker in 2 minutes

What is a Docker?     - Its just a way to package a software so it can work on any hardware.     - Inorder to understand how that process works, you must know this 3 key things:       1. DOCKERFILE - A docker file is a blue print for building a docker image.      2. IMAGE - A docker image is a template for running container.      3. CONTAINER . - A container is just a running process.   Installing and tooling :     -  If you are on MAC or Windows you can install "Docker Desktop" application. It supports both GUI and CLI.     docker ps: - it gives you list of all running containers.     - install Docker extension for vscode or your IDE: This will give you language support when you write docker files. Also link up to remote registries and bunch of other stuffs. The DOCKERFILE:       - which contains code to build your docker image and ...