Skip to content

Troubleshooting

Xavier Marrugat edited this page Apr 17, 2024 · 2 revisions

All tasks with "running" state [to be solved]

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.

Clone this wiki locally