FitTrackee icon indicating copy to clipboard operation
FitTrackee copied to clipboard

Help on setting up workers

Open gardiol opened this issue 1 year ago • 1 comments

I followed the pip install and all seems to be working fine, but my los where full of Error 111 connecting to localhost:6379. Connection refused

so i disabled my workers (removed flask... line in startup script) and the messages disappeared. But how to properly enable those workers if i would to do so?

gardiol avatar Jun 20 '24 07:06 gardiol

Hi

The workers need Redis to run.

By default, FitTrackee tries to connect to the local Redis instance on port 6379 (localhost:6379). The default value of the REDIS_URL environment variable is redis://.

The value must be changed to match the Redis configuration (e.g. with socket the value can be redis:///var/run/redis/redis.sock).

SamR1 avatar Jun 22 '24 19:06 SamR1