Redis Insight debugging information
If you are experiencing errors or other issues when using Redis Insight, follow the steps below to learn more about the errors and to identify root cause.
If you experience connection issues, try these steps.
Run the following command to launch Redis Insight in debug mode to investigate connection issues:
Windows:
cmd /C "set DEBUG=ioredis* && ".\Redis Insight.exe""
macOS (from the Applications folder):
DEBUG=ioredis* open "Redis Insight.app"
Linux:
DEBUG=ioredis* "redis insight"
You can review the Redis Insight log files (files with a .log extension) to get detailed information about system issues.
These are the locations on supported platforms:
/data/logs directory inside the container./Users/<your-username>/.redis-insight directory.C:\Users\<your-username>\.redis-insight directory./home/<your-username>/.redis-insight directory.Windows:
cmd /C "set DEBUG=* && ".\Redis Insight.exe""
macOS (from the Applications folder):
DEBUG=* open "Redis Insight.app"
Linux:
DEBUG=* "redis insight"
Windows:
cmd /C "set STDOUT_LOGGER=true && set LOG_LEVEL=debug && set LOGGER_OMIT_DATA=false && ".\Redis Insight.exe""
macOS (from the Applications folder):
LOG_LEVEL=debug LOGGER_OMIT_DATA=false open "Redis Insight.app"
Linux:
LOG_LEVEL=debug LOGGER_OMIT_DATA=false "redis insight"
Note: if you use LOGGER_OMIT_DATA=false, logs may contain sensitive data.
Windows:
cmd /C "set STDOUT_LOGGER=true && set LOG_LEVEL=debug && set LOGGER_OMIT_DATA=false && set DEBUG=* && ".\Redis Insight.exe""
macOS (from the Applications folder):
LOG_LEVEL=debug LOGGER_OMIT_DATA=false DEBUG=* open "Redis Insight.app"
Linux:
LOG_LEVEL=debug LOGGER_OMIT_DATA=false DEBUG=* "redis insight"
Note: if you use LOGGER_OMIT_DATA=false or DEBUG=*, logs may contain sensitive data.