Create a support package
Create a support package that gathers essential information to help debug issues.
If you encounter any issues that you are not able to resolve yourself and need to contact Redis support for assistance, you can create a support package that gathers all essential information to help debug your issues.
Cluster Manager UI method
To create a support package from the Cluster Manager UI:
-
In the navigation menu, select Support.
-
Select Proceed.
-
In the Create support package dialog, select Run process.
-
The package is created and downloaded by your browser.
Command-line method
If package creation fails with internal error
or if you cannot access the UI, create a support package for the cluster from the command line on any node in the cluster using the rladmin cluster debug_info
command:
/opt/redislabs/bin/rladmin cluster debug_info
-
If
rladmin cluster debug_info
fails for lack of space in the/tmp
directory, you can:-
Change the storage location where the support package is saved:
rladmin cluster config debuginfo_path <path>
The
redislabs
user must have write access to the storage location on all cluster nodes. -
On any node in the cluster, run:
rladmin cluster debug_info
-
-
If
rladmin cluster debug_info
fails for another reason, you can create a support package for the cluster from the command line on each node in the cluster with the command:/opt/redislabs/bin/debuginfo
Upload the tar file to Redis support. The path to the archive is shown in the command output.
REST API method
You can also use debuginfo
REST API requests to create and download support packages.
To download debug info from all nodes and databases:
GET /v1/cluster/debuginfo
To download debug info from all nodes:
GET /v1/nodes/debuginfo
To download debug info from a specific node, replace <uid>
in the following request with the node ID:
GET /v1/nodes/<uid>/debuginfo
To download debug info from all databases:
GET /v1/bdbs/debuginfo
To download debug info from a specific database, replace <uid>
in the following request with the database ID:
GET /v1/bdbs/<uid>/debuginfo