@irfan i strongly advise to use password within redis in production and separating redis as a cluster is really good idea.
@rexon
in ```/etc/default/scalelite```
instead of using 127.0.0.1
check the ip address of your server
```
netstat -nltp
```
look for 6379 port say it is bounded to private ip like 172.16.55.248 or 0.0.0.0
if this is the case use the syntax below;
```REDIS_URL=redis://
redis:tempor...@172.16.55.248```
Hope this helps.