Redis connection to 127.0.0.1:6379 failed - connect ECONNREFUSED

后端 未结 17 2084
时光说笑
时光说笑 2020-12-12 15:34

I working with node.js by expressjs
I try to store an account to session. So, i try to test to use session with code in expressjs

var RedisStore = requ         


        
17条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-12 15:52

    Your connection to redis is failing. Try restarting your redis server, then starting up your client again by running these 3 commands:

    sudo service redis-server restart
    redis-server
    redis-cli
    

提交回复
热议问题