- Platform Release 6.5
- Privacera Platform Installation
- Privacera Platform User Guide
- Privacera Discovery User Guide
- Privacera Encryption Guide
- Privacera Access Management User Guide
- AWS User Guide
- Overview of Privacera on AWS
- Configure policies for AWS services
- Using Athena with data access server
- Using DynamoDB with data access server
- Databricks access manager policy
- Accessing Kinesis with data access server
- Accessing Firehose with Data Access Server
- EMR user guide
- AWS S3 bucket encryption
- Getting started with Minio
- Plugins
- How to Get Support
- Coordinated Vulnerability Disclosure (CVD) Program of Privacera
- Shared Security Model
- Privacera Platform documentation changelog
Getting started with Minio
SSH to the EC2 instance.
Create the download directory.
sudo su mkdir -p /tmp/downloads cd /tmp/downloads
Download the MinIO install script.
wget https://privacera.s3.amazonaws.com/public/run_minio.sh -O run_minio.sh
Run this script.
chmod a+x run_minio.sh ./run_minio.sh
Check the MinIO docker service.
docker ps | grep minio
Stop running as the sudo user.
exit
Configure AWS CLI to connect MinIO
Run the following commands in the node where
aws cli
is installed.aws configure AWS Access Key ID: ${MINIO_ACCESS_KEY} AWS Secret Access Key: ${MINIO_SECRET_KEY} #this can be configured as per the region your want to use Default region name: us-east-1 Default output format: json
List the MinIO buckets.
aws s3 ls s3:///
Configure data access server to Connect MinIO
Edit the Data Access Server properties file.
vi ~/privacera/docker/dataserver/conf/privacera_dataserver.properties
Set the following propertiesdataserver.cloud.provider=AWS
dataserver.aws.services=s3
dataserver2s3.apiKey=${MINIO_ACCESS_KEY}
dataserver2s3.secretKey=${MINIO_SECRET_KEY}
Server host and port properties:
dataserver.v2.s3.endpoint.enable=true
dataserver.v2.s3.endpoint.host=${MINIO_SERVER_IP}
dataserver.v2.s3.endpoint.port=${MINIO_SERVER_PORT}
dataserver.v2.s3.endpoint.ssl= {set to true, if ssl enabled in minio server}
Save the properties file and restart the Data Access Server.
cd ~/privacera/docker ./privacera_services restart dataserver
Configure Privacera AWS CLI to connect MinIO via data access server
Get the Privacera access, secret keys from Privacera Platform portal.
Download the privacera_aws.sh file.
Configure privacera token.
./privacera_aws.sh --config-token
Enable proxy mode.
. ~/privacera_aws.sh --enable-proxy
Check the status.
. ~/privacera_aws.sh --status
List MinIO buckets.
aws s3 ls s3:///
Test endpoint mode, to enable endpoint mode.
. ~/privacera_aws.sh --enable-endpoint
List MinIO buckets.
aws s3 ls s3:/// --endpoint-url ${DATSERVER_HOST}:${DATASERVER_PORT}
Configure Privacera Portal to connect to MinIO via Data Access Server.