Redis Insight 调试信息
Redis Insight 调试信息
如果您在使用 Redis Insight 时遇到错误或其他问题,请按照以下步骤了解有关错误的更多信息并确定根本原因。
连接问题
如果您遇到连接问题,请尝试以下步骤。
1. 在调试模式下启动 Redis Insight
运行以下命令,在调试模式下启动 Redis Insight 以调查连接问题:
-
Windows (窗口):
cmd /C “set DEBUG=ioredis* && ".\Redis Insight.exe"”
-
macOS(从“应用程序”文件夹中):
DEBUG=ioredis* open "Redis Insight.app"
-
Linux的:
DEBUG=ioredis* "redis insight"
2. 调查日志
您可以查看 Redis Insight 日志文件(带有.log
extension) 获取有关系统问题的详细信息。
以下是受支持平台上的位置:
- Docker:在
/data/logs
目录中。 - macOS:在
/Users/<your-username>/.redis-insight
目录。 - Windows:在
C:\Users\<your-username>\.redis-insight
目录。 - Linux:在
/home/<your-username>/.redis-insight
目录。
其他问题
调试连接以外的问题
-
Windows (窗口):
cmd /C “set DEBUG=* && ".\Redis Insight.exe"”
-
macOS(从“应用程序”文件夹中):
DEBUG=* open "Redis Insight.app"
-
Linux的:
DEBUG=* "redis insight"
获取详细的 Redis Insight 日志
-
Windows (窗口):
cmd /C “set STDOUT_LOGGER=true && set LOG_LEVEL=debug && set LOGGER_OMIT_DATA=false && ".\Redis Insight.exe"”
-
macOS(从“应用程序”文件夹中):
LOG_LEVEL=debug LOGGER_OMIT_DATA=false open "Redis Insight.app"
-
Linux的:
LOG_LEVEL=debug LOGGER_OMIT_DATA=false "redis insight"
注意:如果使用 LOGGER_OMIT_DATA=false,则日志可能包含敏感数据。
记录所有内容
-
Windows (窗口):
cmd /C “set STDOUT_LOGGER=true && set LOG_LEVEL=debug && set LOGGER_OMIT_DATA=false && set DEBUG=* && ".\Redis Insight.exe"”
-
macOS(从“应用程序”文件夹中):
LOG_LEVEL=debug LOGGER_OMIT_DATA=false DEBUG=* open "Redis Insight.app"
-
Linux的:
LOG_LEVEL=debug LOGGER_OMIT_DATA=false DEBUG=* "redis insight"
注意:如果使用 LOGGER_OMIT_DATA=false 或 DEBUG=*,日志可能包含敏感数据。