Backup blocked

Backup blocked
The backup NAS is broken and Home Assistant is stuck. How do I kill the process?
Thanks.
See:


.

.
See:

  • ha jobs info | grep -i -n backup || true ha jobs info | grep -i -n upload || true
    9: name: backup_store_homeassistant
    20: name: backup_addon_save
    30: name: backup_addon_save
    40: name: backup_addon_save
    50: name: backup_addon_save
    60: name: backup_addon_save
    70: name: backup_addon_save
    80: name: backup_addon_save
    90: name: backup_addon_save
    100: name: backup_addon_save
    110: name: backup_addon_save
    120: name: backup_addon_save
    130: name: backup_addon_save
    140: name: backup_addon_save
    150: name: backup_addon_save
    160: name: backup_addon_save
    169: name: backup_store_addons
    180: name: backup_folder_save
    190: name: backup_folder_save
    200: name: backup_folder_save
    209: name: backup_store_folders
    220: name: backup_copy_to_location
    229: - message: 'Could not copy backup to WD_AUTOMATICAS due to: [Errno 22] Invalid
    232: type: BackupError
    234: name: backup_copy_to_location
    242: - message: 'Could not copy backup to WD_AUTOMATICAS due to: [Errno 22] Invalid
    245: type: BackupError
    247: name: backup_copy_to_additional_locations
    256: name: backup_manager_partial_backup
    267: name: backup_store_homeassistant
    278: name: backup_addon_save
    288: name: backup_addon_save
    298: name: backup_addon_save
    308: name: backup_addon_save
    318: name: backup_addon_save
    328: name: backup_addon_save
    338: name: backup_addon_save
    348: name: backup_addon_save
    358: name: backup_addon_save
    368: name: backup_addon_save
    378: name: backup_addon_save
    388: name: backup_addon_save
    398: name: backup_addon_save
    408: name: backup_addon_save
    418: name: backup_addon_save
    427: name: backup_store_addons
    438: name: backup_folder_save
    448: name: backup_folder_save
    458: name: backup_folder_save
    467: name: backup_store_folders
    478: name: backup_copy_to_location
    488: name: backup_copy_to_location
    497: name: backup_copy_to_additional_locations
    506: name: backup_manager_partial_backup

Muchas gracias

I had the same problem recently and found out that there is no solution to it, other than to restart HA the hard way. Which in my case was the reset button on my HA Green.

There’s an open issue about this here: Backup running for ages · Issue #143158 · home-assistant/core · GitHub

Thank you so much
Sorry, the translator is not clear, I don’t speak English and I’m going very slowly:
Disconnect from the electrical network? Have you disconnected it by doing a hard reset? Has HA restarted?
Infinite thanks.

I had to press the reset button on my HA Green box. That was the only thing that worked for me. I was nervous about possible data corruption, but it came up again without any apparent problems.

It’s complicated for me because according to the AI ​​and what I see:
The Raspberry Pi 5 does not have a physical reset button built into the factory.
I will have to remove and replace the electrical power and that does more damage than the reset button.

Thanks a million.

If you have one of the ssh add-ons installed, you can try to ssh into your Pi and

ha host reboot

Thanks, I’m going to buy another Raspberry and when I have it cloned I’ll try the command


A.I.
The command

ha host reboot completely reboots the hardware or the physical machine (host) where Home Assistant is installed, including the underlying operating system.

It is a much more drastic action than simply restarting the Home Assistant core. This is what happens when you run it:

  • It shuts down and restarts the entire operating system.
  • It causes the Home Assistant core, the Supervisor (if you’re using it), and all add-ons to also restart.
  • It should only be used when strictly necessary, for example, to fix an issue that can’t be resolved by only restarting the Home Assistant core.

Key difference with ha core restart
It’s important not to confuse ha host reboot with ha core restart.

  • ha host reboot: Restarts the operating system and the hardware. It’s like turning the computer off and on again.
  • ha core restart: Only restarts the Home Assistant application, keeping the operating system and add-ons running. This is what you do to apply configuration changes.

SOLVED:
ha core restart

===================================================
I.A.

:blue_book: ha core restart reinicia solo el núcleo de Home Assistant (Home Assistant Core),
no el sistema operativo, ni el supervisor, ni los complementos.

Sirve para:

  • Recargar todo el sistema de automatizaciones, integraciones y frontend.
  • Liberar procesos bloqueados (como el de backup, si quedó colgado dentro del Core).
  • Sin interrumpir el sistema operativo de la Pi ni Docker.

:warning: Durante unos segundos dejarás de ver la interfaz web (se desconecta), pero volverá sola en 1–2 minutos.

:point_right: Cuando acabe el proceso (verás “Command completed successfully”), copia aquí la respuesta completa.

.
.

Thanks everyone