(Azure) Create Privacera Manager Host#
These are instructions for the creation of the Privacera Platform host in an Azure cloud environment.
The first step is to create a new virtual machine that will be dedicated to the Privacera Platform. This virtual machine, along with your service account, must, initially, have sufficient privileges to allow it to download additional Privacera Platform required and optional components.
Once running, this VM and associated service accounts, must also have sufficient privileges to the target data repositories and all other referenced resources.
The second step is to install Docker and Docker Compose to the Privacera Manager host.
Note
Single-node/Docker deployment, Privacera Manager deploys and configures Privacera Platform core components as assigned containers that run on the same platform. In this 'single-node' configurations, the Privacera Manager host is also the Privacera Platform host.
Virtual Machine Creation#
Create an Azure Virtual Machine (VM) as follows:
-
Ubuntu installed (18.04.5 LTS preferable)
-
To learn which ports are used by different Privacera services, click here.
Install Docker and Docker Compose#
-
SSH to the VM as the administrator ( ${VM_USER} ).
-
Install Docker on the VM.
sudo apt update sudo apt install docker.io -y sudo service docker start sudo usermod -a -G docker ${VM_USER} exit
-
Reattach to the VM (SSH to VM as ${VM_USER}).
-
Confirm docker installation Download Docker-compose.
#confirm docker installation docker info DOCKER_COMPOSE_VERSION="1.23.2" sudo curl -L https://github.com/docker/compose/releases/download/${DOCKER_COMPOSE_VERSION}/docker-compose-`uname -s`-`uname -m` -o /usr/local/bin/docker-compose sudo chmod +x /usr/local/bin/docker-compose