setup_meilisearch: generate a 32-byte master key - #20
Merged
Conversation
base64 12 yields 16 characters. MeiliSearch itself only asks for 16 bytes, but Wanderer's PocketBase fork refuses to start below 32 and crash-loops with "MEILI_MASTER_KEY not set or is shorter than 32 bytes". A longer key is valid for all 11 callers, so this is raised at the source rather than overridden per script. Refs community-scripts/ProxmoxVE#16909
Contributor
Try this branchThe engine and the scripts resolve independently, so a production script can COMMUNITY_SCRIPTS_CORE_URL=https://raw.githubusercontent.com/community-scripts/core/fix/meilisearch-key-length \
bash -c "$(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/ct/debian.sh)"Swap Run a script from a fork as wellcurl -fsSL https://raw.githubusercontent.com/community-scripts/core/fix/meilisearch-key-length/tools/run.sh |
bash -s -- https://raw.githubusercontent.com/YOU/ProxmoxVED/your-branch ct/debian.sh \
https://raw.githubusercontent.com/community-scripts/core/fix/meilisearch-key-lengthNote that Useful flags while testing
|
12 tasks
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
✍️ Description
openssl rand -base64 12yields 16 characters. MeiliSearch itself only asks for 16 bytes, but Wanderer's PocketBase fork refuses to start below 32 and crash-loops withMEILI_MASTER_KEY not set or is shorter than 32 bytes.Raised to
-base64 32(44 characters) at the source rather than overridden per script: a longer key is valid for all 11 callers (bar-assistant, karakeep, librechat, meilisearch, open-archiver, wanderer).The other half of the report — PocketBase built with Go 1.27 instead of the 1.25.0 it pins — is fixed in ProxmoxVE#16974.
🔗 Related Issue
Fixes community-scripts/ProxmoxVE#16909
✅ Prerequisites (X in brackets)
API.txt.🤖 AI Assistance (X in brackets)
🛠️ Type of Change (X in brackets)
README,docs/,CONTRIBUTING.md, or other docs.