-
Notifications
You must be signed in to change notification settings - Fork 311
feat(influxdb3): add v3.3.0 release notes and admin token recovery do… #6266
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -106,6 +106,7 @@ influxdb3 serve | |
- [HTTP](#http) | ||
- [max-http-request-size](#max-http-request-size) | ||
- [http-bind](#http-bind) | ||
- [admin-token-recovery-http-bind](#admin-token-recovery-http-bind) | ||
- [Memory](#memory) | ||
- [exec-mem-pool-bytes](#exec-mem-pool-bytes) | ||
- [buffer-mem-limit-mb](#buffer-mem-limit-mb) | ||
|
@@ -752,6 +753,7 @@ Provides custom configuration to DataFusion as a comma-separated list of | |
|
||
- [max-http-request-size](#max-http-request-size) | ||
- [http-bind](#http-bind) | ||
- [admin-token-recovery-http-bind](#admin-token-recovery-http-bind) | ||
|
||
#### max-http-request-size | ||
|
||
|
@@ -777,6 +779,31 @@ Defines the address on which InfluxDB serves HTTP API requests. | |
|
||
--- | ||
|
||
#### admin-token-recovery-http-bind | ||
|
||
Enables an admin token recovery HTTP server on a separate port. This server allows regenerating lost admin tokens without existing authentication. The server automatically shuts down after a successful token regeneration. | ||
|
||
> [!Warning] | ||
> This option creates an unauthenticated endpoint that can regenerate admin tokens. Only use this when you have lost access to your admin token and ensure the server is only accessible from trusted networks. | ||
|
||
**Default:** `127.0.0.1:8182` (when enabled) | ||
|
||
| influxdb3 serve option | Environment variable | | ||
| :--------------------- | :------------------- | | ||
| `--admin-token-recovery-http-bind` | `INFLUXDB3_ADMIN_TOKEN_RECOVERY_HTTP_BIND` | | ||
|
||
##### Example usage | ||
|
||
```bash | ||
# Start server with recovery endpoint | ||
influxdb3 serve --admin-token-recovery-http-bind | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ok, this option appears to work differently than other options. If you include just the option, does it default to There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
This option can be used with or without specifying an address:
|
||
|
||
# In another terminal, regenerate the admin token | ||
influxdb3 create token --admin --regenerate --host http://127.0.0.1:8182 | ||
``` | ||
|
||
--- | ||
|
||
### Memory | ||
|
||
- [exec-mem-pool-bytes](#exec-mem-pool-bytes) | ||
|
Uh oh!
There was an error while loading. Please reload this page.