You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@kvrocks.apache.org by GitBox <gi...@apache.org> on 2022/12/05 09:04:12 UTC

[GitHub] [incubator-kvrocks] Hadryan created a discussion: Several "Connection Refused" errors with nodejs

GitHub user Hadryan created a discussion: Several "Connection Refused" errors with nodejs

Inside a nodejs project I'm using Kvrocks with redis npm library for nodejs.

I have two instances of the Kvrocks running on the same machine on different ports (6666, 7777)
```
$ ./build/kvrocks -c kvrocks1.conf
$ ./build/kvrocks -c kvrocks2.conf
```

The 7777 port is what I'm trying to connect from nodejs.

```
...
const redis = require("redis");
const redisclient = redis.createClient(7777);
  
(async () => {
    await redisclient.connect();
})();
  
redisclient.on("ready", () => {
    console.log("Connected!");
});
  
redisclient.on("error", (err) => {
    console.log("Error in the Connection");
});
```

The problem is the Kvrocks refused connections several times at first and then accepting one for few seconds and the same again and again. It seems it's unstable for an unknown reason.
```
...
Error in the Connection
Error in the Connection
Error in the Connection
Error in the Connection
Error in the Connection
Error in the Connection
Connected!
Error in the Connection
Error in the Connection
Error in the Connection
Error in the Connection
Error in the Connection
Error in the Connection
Connected!
...
```

Quite the same problem exists when I test using `redis-cli -p 7777`.

GitHub link: https://github.com/apache/incubator-kvrocks/discussions/1160

----
This is an automatically sent email for issues@kvrocks.apache.org.
To unsubscribe, please send an email to: issues-unsubscribe@kvrocks.apache.org


[GitHub] [incubator-kvrocks] PragmaTwice added a comment to the discussion: Several "Connection Refused" errors with nodejs

Posted by GitBox <gi...@apache.org>.
GitHub user PragmaTwice added a comment to the discussion: Several "Connection Refused" errors with nodejs

I cannot reproduce this case using current unstable branch and redis-cli. 

Could you check the log file and see if there is any error or warning?

```sh
$ for port in 6666 7777; do for i in $(seq 10); do redis-cli -p $port PING; done; done
PONG
PONG
PONG
PONG
PONG
PONG
PONG
PONG
PONG
PONG
PONG
PONG
PONG
PONG
PONG
PONG
PONG
PONG
PONG
PONG
```

GitHub link: https://github.com/apache/incubator-kvrocks/discussions/1160#discussioncomment-4313014

----
This is an automatically sent email for issues@kvrocks.apache.org.
To unsubscribe, please send an email to: issues-unsubscribe@kvrocks.apache.org


[GitHub] [incubator-kvrocks] PragmaTwice added a comment to the discussion: Several "Connection Refused" errors with nodejs

Posted by GitBox <gi...@apache.org>.
GitHub user PragmaTwice added a comment to the discussion: Several "Connection Refused" errors with nodejs

```sh
$ for port in 6666 7777; do for i in $(seq 10000); do redis-cli -p $port PING 2>&1 | grep refused; done; done
(empty) # tried several times, and all results are empty
```

It still seem to be work pretty well. 

Could you try another environment (in a docker container or other distro), build kvrocks again and test if there is still this problem?

We can hardly fix this problem if it is hard to reproduce in our CI or local device.

GitHub link: https://github.com/apache/incubator-kvrocks/discussions/1160#discussioncomment-4313320

----
This is an automatically sent email for issues@kvrocks.apache.org.
To unsubscribe, please send an email to: issues-unsubscribe@kvrocks.apache.org


[GitHub] [incubator-kvrocks] Hadryan added a comment to the discussion: Several "Connection Refused" errors with nodejs

Posted by GitBox <gi...@apache.org>.
GitHub user Hadryan added a comment to the discussion: Several "Connection Refused" errors with nodejs

This is the actual error message Kvrocks produces:
```
0|app  | Error: connect ECONNREFUSED 127.0.0.1:7777
0|app  |     at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1283:16) {
0|app  |   errno: -111,
0|app  |   code: 'ECONNREFUSED',
0|app  |   syscall: 'connect',
0|app  |   address: '127.0.0.1',
0|app  |   port: 7777
0|app  | }

```

GitHub link: https://github.com/apache/incubator-kvrocks/discussions/1160#discussioncomment-4311860

----
This is an automatically sent email for issues@kvrocks.apache.org.
To unsubscribe, please send an email to: issues-unsubscribe@kvrocks.apache.org


[GitHub] [incubator-kvrocks] git-hulk added a comment to the discussion: Several "Connection Refused" errors with nodejs

Posted by GitBox <gi...@apache.org>.
GitHub user git-hulk added a comment to the discussion: Several "Connection Refused" errors with nodejs

I can't get this point too. You can use redis-cli or telnet to check whether `7777` is alive or not after the connection refused.

GitHub link: https://github.com/apache/incubator-kvrocks/discussions/1160#discussioncomment-4313716

----
This is an automatically sent email for issues@kvrocks.apache.org.
To unsubscribe, please send an email to: issues-unsubscribe@kvrocks.apache.org


[GitHub] [incubator-kvrocks] Hadryan edited a comment on the discussion: Several "Connection Refused" errors with nodejs

Posted by GitBox <gi...@apache.org>.
GitHub user Hadryan edited a comment on the discussion: Several "Connection Refused" errors with nodejs

In the next tests (with `$seq` = 1000)  everything again was `PONG` in the few first tests, however changing the `$seq` to 10000, in the middle of the tests there was `Could not connect to Redis at 127.0.0.1:7777: Connection refused`

GitHub link: https://github.com/apache/incubator-kvrocks/discussions/1160#discussioncomment-4313199

----
This is an automatically sent email for issues@kvrocks.apache.org.
To unsubscribe, please send an email to: issues-unsubscribe@kvrocks.apache.org


[GitHub] [incubator-kvrocks] Hadryan edited a comment on the discussion: Several "Connection Refused" errors with nodejs

Posted by GitBox <gi...@apache.org>.
GitHub user Hadryan edited a comment on the discussion: Several "Connection Refused" errors with nodejs

This is `kvrocks1.conf`
```
bind 0.0.0.0
port 6666
timeout 0
workers 8
daemonize yes
cluster-enabled no
maxclients 10000
db-name kvrocksdb1.db
dir /home/kv/kvrocks1
log-dir stdout
pidfile ""
slave-read-only yes
slave-priority 100
tcp-backlog 511
master-use-repl-port no
use-rsid-psync no
slave-serve-stale-data yes
slave-empty-db-before-fullsync no
purge-backup-on-fullsync no
max-replication-mb 0
max-io-mb 500
max-db-size 0
max-backup-to-keep 1
max-backup-keep-hours 24
max-bitmap-to-string-mb 16
...
```

and this is the `kvrocks2.conf`:
```
bind 0.0.0.0
port 7777
timeout 0
workers 8
daemonize yes
cluster-enabled no
maxclients 10000
db-name kvrocksdb2.db
dir /home/kv/kvrocks2
log-dir stdout
pidfile ""
slave-read-only yes
slave-priority 100
tcp-backlog 511
master-use-repl-port no
use-rsid-psync no
slave-serve-stale-data yes
slave-empty-db-before-fullsync no
purge-backup-on-fullsync no
max-replication-mb 0
max-io-mb 500
max-db-size 0
max-backup-to-keep 1
max-backup-keep-hours 1000
max-bitmap-to-string-mb 16
...
```

GitHub link: https://github.com/apache/incubator-kvrocks/discussions/1160#discussioncomment-4312182

----
This is an automatically sent email for issues@kvrocks.apache.org.
To unsubscribe, please send an email to: issues-unsubscribe@kvrocks.apache.org


[GitHub] [incubator-kvrocks] PragmaTwice edited a comment on the discussion: Several "Connection Refused" errors with nodejs

Posted by GitBox <gi...@apache.org>.
GitHub user PragmaTwice edited a comment on the discussion: Several "Connection Refused" errors with nodejs

```sh
$ for port in 6666 7777; do for i in $(seq 10000); do redis-cli -p $port PING 2>&1 | grep refused; done; done
(empty) # tried several times, and all results are empty
```

It still seem to work pretty well. 

Could you try another environment (in a docker container or other distro), build kvrocks again and test if there is still this problem?

We can hardly fix this problem if it is hard to reproduce in our CI or local device.

GitHub link: https://github.com/apache/incubator-kvrocks/discussions/1160#discussioncomment-4313320

----
This is an automatically sent email for issues@kvrocks.apache.org.
To unsubscribe, please send an email to: issues-unsubscribe@kvrocks.apache.org


[GitHub] [incubator-kvrocks] PragmaTwice edited a comment on the discussion: Several "Connection Refused" errors with nodejs

Posted by GitBox <gi...@apache.org>.
GitHub user PragmaTwice edited a comment on the discussion: Several "Connection Refused" errors with nodejs

```sh
$ for port in 6666 7777; do for i in $(seq 10000); do redis-cli -p $port PING 2>&1 | grep refused; done; done
(empty) # tried several times, and all results are empty
```

It still seem to work pretty well. 

Could you try another environment (in a docker container or other distro), build kvrocks again and test if there is still this problem?

We can hardly fix this problem if it is hard to reproduce in our CI or local device.

But of course, other developers will help you if they reproduce successfully.

GitHub link: https://github.com/apache/incubator-kvrocks/discussions/1160#discussioncomment-4313320

----
This is an automatically sent email for issues@kvrocks.apache.org.
To unsubscribe, please send an email to: issues-unsubscribe@kvrocks.apache.org


[GitHub] [incubator-kvrocks] Hadryan edited a comment on the discussion: Several "Connection Refused" errors with nodejs

Posted by GitBox <gi...@apache.org>.
GitHub user Hadryan edited a comment on the discussion: Several "Connection Refused" errors with nodejs

In the next tests (with `$seq` = 1000)  everything again was `PONG`

GitHub link: https://github.com/apache/incubator-kvrocks/discussions/1160#discussioncomment-4313199

----
This is an automatically sent email for issues@kvrocks.apache.org.
To unsubscribe, please send an email to: issues-unsubscribe@kvrocks.apache.org


[GitHub] [incubator-kvrocks] PragmaTwice added a comment to the discussion: Several "Connection Refused" errors with nodejs

Posted by GitBox <gi...@apache.org>.
GitHub user PragmaTwice added a comment to the discussion: Several "Connection Refused" errors with nodejs

Hi, thanks for your report.

May I ask which kvrocks version are you using?

GitHub link: https://github.com/apache/incubator-kvrocks/discussions/1160#discussioncomment-4311344

----
This is an automatically sent email for issues@kvrocks.apache.org.
To unsubscribe, please send an email to: issues-unsubscribe@kvrocks.apache.org


[GitHub] [incubator-kvrocks] tisonkun added a comment to the discussion: Several "Connection Refused" errors with nodejs

Posted by GitBox <gi...@apache.org>.
GitHub user tisonkun added a comment to the discussion: Several "Connection Refused" errors with nodejs

Can you share the conf file? It can be the cause if you share the same data dir (only ports are different).

GitHub link: https://github.com/apache/incubator-kvrocks/discussions/1160#discussioncomment-4311869

----
This is an automatically sent email for issues@kvrocks.apache.org.
To unsubscribe, please send an email to: issues-unsubscribe@kvrocks.apache.org


[GitHub] [incubator-kvrocks] Hadryan added a comment to the discussion: Several "Connection Refused" errors with nodejs

Posted by GitBox <gi...@apache.org>.
GitHub user Hadryan added a comment to the discussion: Several "Connection Refused" errors with nodejs

With `$seq` 10 everything was `PONG`, so I changed  `$seq` to 1000:
```
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
Could not connect to Redis at 127.0.0.1:7777: Connection refused
PONG
PONG
PONG
PONG
PONG
PONG
PONG
PONG
PONG
PONG
PONG
PONG
PONG
PONG
PONG
PONG
PONG
PONG
PONG
PONG
PONG
PONG
PONG
PONG
PONG
PONG
PONG
PONG
PONG
PONG
PONG
PONG
PONG
PONG
PONG
PONG
PONG
PONG
PONG
PONG
PONG
PONG
PONG
PONG
PONG
PONG
PONG
PONG
PONG
PONG
PONG
PONG
PONG
PONG
PONG
PONG
PONG
PONG
PONG
PONG
PONG
PONG
PONG
PONG
PONG
PONG
PONG
PONG
PONG
PONG
PONG
PONG
PONG
PONG
PONG
PONG
PONG
PONG
PONG
PONG
PONG
PONG
PONG
PONG
PONG
PONG
PONG
PONG
PONG
PONG
...
```

GitHub link: https://github.com/apache/incubator-kvrocks/discussions/1160#discussioncomment-4313184

----
This is an automatically sent email for issues@kvrocks.apache.org.
To unsubscribe, please send an email to: issues-unsubscribe@kvrocks.apache.org


[GitHub] [incubator-kvrocks] PragmaTwice edited a comment on the discussion: Several "Connection Refused" errors with nodejs

Posted by GitBox <gi...@apache.org>.
GitHub user PragmaTwice edited a comment on the discussion: Several "Connection Refused" errors with nodejs

Hi, thanks for your report.

May I ask which kvrocks version you are using?

GitHub link: https://github.com/apache/incubator-kvrocks/discussions/1160#discussioncomment-4311344

----
This is an automatically sent email for issues@kvrocks.apache.org.
To unsubscribe, please send an email to: issues-unsubscribe@kvrocks.apache.org


[GitHub] [incubator-kvrocks] Hadryan added a comment to the discussion: Several "Connection Refused" errors with nodejs

Posted by GitBox <gi...@apache.org>.
GitHub user Hadryan added a comment to the discussion: Several "Connection Refused" errors with nodejs

In the next tests (with $seq = 1000)  everything again was `PONG`

GitHub link: https://github.com/apache/incubator-kvrocks/discussions/1160#discussioncomment-4313199

----
This is an automatically sent email for issues@kvrocks.apache.org.
To unsubscribe, please send an email to: issues-unsubscribe@kvrocks.apache.org


[GitHub] [incubator-kvrocks] Hadryan added a comment to the discussion: Several "Connection Refused" errors with nodejs

Posted by GitBox <gi...@apache.org>.
GitHub user Hadryan added a comment to the discussion: Several "Connection Refused" errors with nodejs

This is `kvrocks version 999.999.999 @0c4d4b7`

also `package.json` is:
```
  "dependencies": {
    "amqplib": "^0.10.3",
    "amqplib-as-promised": "^4.1.0",
    "body-parser": "^1.19.0",
    "cheerio": "^1.0.0-rc.5",
    "cors": "^2.8.5",
    "crypto": "^1.0.1",
    "dotenv": "^8.2.0",
    "express": "^4.17.1",
    "morgan": "^1.10.0",
    "node-fetch": "^2.6.1",
    "redis": "^3.1.2"
  }
```
Kvrocks is running on Debian 11.


GitHub link: https://github.com/apache/incubator-kvrocks/discussions/1160#discussioncomment-4311845

----
This is an automatically sent email for issues@kvrocks.apache.org.
To unsubscribe, please send an email to: issues-unsubscribe@kvrocks.apache.org


[GitHub] [incubator-kvrocks] Hadryan added a comment to the discussion: Several "Connection Refused" errors with nodejs

Posted by GitBox <gi...@apache.org>.
GitHub user Hadryan added a comment to the discussion: Several "Connection Refused" errors with nodejs

This is `kvrocks1.conf`
```
bind 0.0.0.0
port 6666
timeout 0
workers 8
daemonize yes
cluster-enabled no
maxclients 10000
db-name kvrocksdb1.db
dir /home/kv/kvrocks1
log-dir stdout
pidfile ""
slave-read-only yes
slave-priority 100
tcp-backlog 511
master-use-repl-port no
use-rsid-psync no
slave-serve-stale-data yes
slave-empty-db-before-fullsync no
purge-backup-on-fullsync no
max-replication-mb 0
max-io-mb 500
max-db-size 0
max-backup-to-keep 1
max-backup-keep-hours 24
max-bitmap-to-string-mb 16
...
```

and this is the `kvrocks2.config`:
```
bind 0.0.0.0
port 7777
timeout 0
workers 8
daemonize yes
cluster-enabled no
maxclients 10000
db-name kvrocksdb2.db
dir /home/kv/kvrocks2
log-dir stdout
pidfile ""
slave-read-only yes
slave-priority 100
tcp-backlog 511
master-use-repl-port no
use-rsid-psync no
slave-serve-stale-data yes
slave-empty-db-before-fullsync no
purge-backup-on-fullsync no
max-replication-mb 0
max-io-mb 500
max-db-size 0
max-backup-to-keep 1
max-backup-keep-hours 1000
max-bitmap-to-string-mb 16
...
```

GitHub link: https://github.com/apache/incubator-kvrocks/discussions/1160#discussioncomment-4312182

----
This is an automatically sent email for issues@kvrocks.apache.org.
To unsubscribe, please send an email to: issues-unsubscribe@kvrocks.apache.org