MAJ Node BB impossible

What app is this about, and its version: (nodebb) de 4.10.3~ynh1
What YunoHost version are you running: 12.1.40.1
What type of hardware are you using: VPS bought online

Describe your issue

Bonjour, Nodebb ne se met pas à jour via la console d’ administration.
Je pensais que ça venait de Yarn and Sury APT keys issues mais non. Effectivement j’avais eu quelques problèmes de MAJ sur d’autres applis et ça avait fonctionné mais la je ne sais pas.

Share relevant logs or error messages

https://paste.yunohost.org/raw/obubeyiziq

Bonsoir @grigri007
Curieux que le fichier ait disparu. Essaie ceci

  • recréation du fichier
sudo nano /etc/logrotate.d/nodebb

avec ce contenu :

/var/log/nodebb/*.log {
    # Rotate if the logfile exceeds 100Mo
    size 100M
    # Keep 12 old log maximum
    rotate 12
    # Compress the logs with gzip
    compress
    # Compress the log at the next cycle. So keep always 2 non compressed logs
    delaycompress
    # Copy and truncate the log to allow to continue write on it. Instead of moving the log.
    copytruncate
    # Do not trigger an error if the log is missing
    missingok
    # Do not rotate if the log is empty
    notifempty
    # Keep old logs in the same dir
    noolddir
}

Et retente l’upgrade.

This topic was automatically closed 15 days after the last reply. New replies are no longer allowed.