Связь с Хьюи отклонена

Я продолжаю получать сообщение "connection failed: connection to the server at "127.0.0.1", port 5432 failed: Connection refused Работает ли сервер на этом хосте и принимает ли он TCP/IP соединения" при запуске моей задачи в продакшене?" В локальной разработке такого не происходит.

  @db_periodic_task(crontab(minute='*/1'), queue='application_expiration')
  def parcel_expiration_task():
      # current date and time
      current_timestamp = timezone.localtime(timezone.now())
  
      # get all event
      get_events = Event.objects.order_by('-creation_time').filter(
         time_ends__lt=current_timestamp
      )

      if get_events.exists():
          ....

Я пытался добавить соединение с базой данных в супервизоре:

  [program: application]
  command='...'
  user='...'
  autostart=true
  autorestart=true
  redirect_stderr = true                                               
  stdout_logfile = '....'
  environment=DATABASE_URL="postgresql://username: password@localhost:5432/db_name"

Я также отредактировал файл pg_hba.conf и добавил следующую запись в конец файла:

  host    all             all              0.0.0.0/0                       md5
  host    all             all              ::/0                               md5
Вернуться на верх