Skip to content

Setup

Perform the following steps to configure the Ops Server:

  1. SSH into the instance where Privacera is installed.

  2. Run the following command to navigate to the /config directory.

    Bash
    cd ~/privacera/privacera-manager/config
    

  3. Run the following command to copy the sample vars:

    Bash
    cp sample-vars/vars.ops-server.yaml custom-vars/vars.ops-server.yaml
    

  4. Execute the following commands to update your Privacera Manager platform instance:

    a. Generate the helm charts

    Bash
    cd ~/privacera/privacera-manager
    ./privacera-manager.sh setup
    
    b. Apply the helm charts
    Bash
    ./pm_with_helm.sh upgrade
    
    c. Generate Plugin tar ball, update Route 53 DNS, etc.
    Bash
    ./privacera-manager post-install
    

Check Ops Server Status:

  1. To verify Ops Server status, visit the health check endpoint:
    Bash
    curl -k https://<OPS_SERVER_HOST>:5050/actuator/health
    
  2. Replace {OPS_SERVER_HOST} with the actual IP/Host address where Ops Server is hosted. You can find {OPS_SERVER_HOST} in the service-urls.txt file located in the ~/privacera/privacera-manager/output/ directory.
    Bash
    cat ~/privacera/privacera-manager/output/service-urls.txt
    
  3. Review the response to ensure there are no errors or issues reported in the health check. A successful response indicates that the server is up and running. Example Success Response:
    Bash
    {"status":"UP"}
    

Comments