【小5聊】dotnet Core,Redis服务器 It was not possible to connect to the redis server(s),出现提示的解决方案

时间:2024-04-09 15:03:36

1、ConnectionMultiplexer.Connect("127.0.0.1:6379");,提示如下错误

【小5聊】dotnet Core,Redis服务器 It was not possible to connect to the redis server(s),出现提示的解决方案

2、原因:Redis服务器未开启,解决方法如下

1)定位到redis安装目录,比如小5安装Redis的目录是C:\Program Files\Redis,如下操作
输入cmd命令:cd C:\Program Files\Redis

2)启动Redis服务器
输入cmd命令:redis-server.exe redis.windows.conf

出现下面效果就表示启动成功

【小5聊】dotnet Core,Redis服务器 It was not possible to connect to the redis server(s),出现提示的解决方案

3、再次运行,效果如下

【小5聊】dotnet Core,Redis服务器 It was not possible to connect to the redis server(s),出现提示的解决方案

 

 

关注小程序:一句话一感想一心情,时时刻刻书写你的一句话,还有机会上C位哦

【小5聊】dotnet Core,Redis服务器 It was not possible to connect to the redis server(s),出现提示的解决方案