Databases
Learn how to configure Datasherlock for your specific needs. This guide provides insights into setting up your Datasherlock instance with all major sql databases
Database Configurations
Datasherlock offers support for all major databases. Choose the database type that suits your application's requirements and configure it accordingly.
Configuration
type: "mysql"
database:
host: "<DB_HOST>"
username: "<DB_USERNAME>"
port: "<DB_PORT>"
database: "<DB_NAME>"
ssl: "<DB_SSL>" Configuration Options
host: Your database host URLusername: Your Database Usernameport: Your Database Password, default 3306database: "Your Database name"ssl: "SSL is enabled or disable (true, false)"
Configuration
type: "postgres"
database:
host: "<DB_HOST>"
username: "<DB_USERNAME>"
port: "<DB_PORT>"
database: "<DB_NAME>"
ssl: "<DB_SSL>" Configuration Options
host: Your database host URLusername: Your Database Usernameport: Your Database Password, default 5432database: "Your Database name"ssl: "SSL is enabled or disable (enable, disable)"
Create Agent

NOTE: On Catalog page will will see API Keys, Each API keys are tightly coupled with agent.
Export Environments variables
Register Database Metadata in the Cloud
To connect your agent to the Datasherlock cloud, use the following command. It will register your database schema with cloud
Run an Agent Locally
To run an API server locally on port 8080, use the following command. You can then use this URL to interact with the platform:
Last updated