generated from mintlify/starter
-
Notifications
You must be signed in to change notification settings - Fork 2
docs: add enterprise license keys documentation for self-hosted instances #139
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Draft
+117
−4
Draft
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
85 changes: 85 additions & 0 deletions
self-host/customize-deployment/enterprise-license-keys.mdx
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
--- | ||
title: "Enterprise License Keys" | ||
description: "Access enterprise features on self-hosted Lightdash instances" | ||
--- | ||
|
||
Enterprise License Keys enable access to advanced Lightdash Enterprise Edition features on self-hosted instances. These features include enhanced security, performance optimizations, and advanced collaboration tools designed for large organizations. | ||
|
||
## Getting an Enterprise License Key | ||
|
||
To obtain an Enterprise License Key for your self-hosted Lightdash instance: | ||
|
||
1. **Contact our team** - [Schedule a call with our enterprise team](https://calendly.com/lightdash-cloud/enterprise?utm_source=docs&utm_medium=referral&utm_campaign=enterprise_licensing&utm_content=license_key_page) to discuss your requirements and get your license key. | ||
|
||
2. **Receive your license key** - Our team will provide you with a unique license key tailored to your organization's needs. | ||
|
||
## Configuring Your License Key | ||
|
||
Once you have received your Enterprise License Key, you need to configure it in your Lightdash deployment. | ||
|
||
### Using Environment Variables | ||
|
||
Add the following environment variable to your Lightdash configuration: | ||
|
||
```bash | ||
LIGHTDASH_LICENSE_KEY=your-enterprise-license-key-here | ||
``` | ||
|
||
### Using Helm (Kubernetes) | ||
|
||
If you're deploying Lightdash on Kubernetes using Helm, add the license key to your `values.yaml` file: | ||
|
||
```yaml | ||
secrets: | ||
LIGHTDASH_LICENSE_KEY: your-enterprise-license-key-here | ||
``` | ||
|
||
Then update your Helm deployment: | ||
|
||
```bash | ||
helm upgrade lightdash lightdash/lightdash -n lightdash -f values.yaml | ||
``` | ||
|
||
### Using Docker Compose | ||
|
||
For Docker Compose deployments, add the license key to your `docker-compose.yml` file: | ||
|
||
```yaml | ||
services: | ||
lightdash: | ||
environment: | ||
- LIGHTDASH_LICENSE_KEY=your-enterprise-license-key-here | ||
``` | ||
|
||
## Verifying Your License | ||
|
||
After configuring your license key and restarting Lightdash, you can verify that enterprise features are enabled by: | ||
|
||
1. Logging in as an admin user | ||
2. Navigating to Settings → Organization | ||
3. Checking for the "Enterprise Edition" badge | ||
|
||
## Enterprise Features | ||
|
||
With a valid Enterprise License Key, you'll have access to: | ||
|
||
- **Advanced authentication** - Enhanced SSO options and security controls | ||
- **Extended analytics** - Additional usage analytics and monitoring capabilities | ||
- **Priority support** - Direct access to our enterprise support team | ||
- **Advanced customization** - Additional configuration options for large deployments | ||
- **Performance optimizations** - Features designed for high-scale deployments | ||
|
||
## Troubleshooting | ||
|
||
If enterprise features are not available after configuring your license key: | ||
|
||
1. Verify the license key is correctly set in your environment variables | ||
2. Ensure Lightdash has been restarted after adding the license key | ||
3. Check the Lightdash logs for any license-related error messages | ||
4. Contact our [enterprise support team](https://calendly.com/lightdash-cloud/enterprise) for assistance | ||
|
||
## Related Documentation | ||
|
||
- [Environment Variables Reference](/self-host/customize-deployment/environment-variables) | ||
- [Self-Host Lightdash](/self-host/self-host-lightdash) | ||
- [Lightdash Cloud vs Self-Hosted](/self-host/lightdash-cloud-vs-self-hosted) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.