-
Notifications
You must be signed in to change notification settings - Fork 18
Troubleshooting
Xavier Marrugat edited this page Apr 17, 2024
·
2 revisions
This issue may occur after restarting InfoHound several times. While the exact cause is unknown, it can be easily resolved by updating the state in the Postgres database.
psql -U USERNAME -W infohound_db
update infohound_tasks set celery_id=NULL;
Please note that the default username and password are usually "postgres", but you can change them in the infohound_project/settings.py file. For Docker installations, you can access Postgres using the following command:
docker exec -it CONTAINER psql -U USERNAME -W infohound_db
Replace CONTAINER with the name of your Docker container.