SamR1 / FitTrackee

Self-hosted outdoor activity tracker :bicyclist:
https://samr1.github.io/FitTrackee
GNU Affero General Public License v3.0
709 stars 44 forks source link

Help on setting up workers #579

Open gardiol opened 4 months ago

gardiol commented 4 months ago

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?

SamR1 commented 3 months ago

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).