andreidelait

Members
  • Posts

    129
  • Joined

  • Last visited

About andreidelait

  • Birthday 06/20/1986

Converted

  • Gender
    Male
  • Location
    Bucharest

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

andreidelait's Achievements

Apprentice

Apprentice (3/14)

21

Reputation

  1. Searching the internet I found out usually is a docker container that has issues with python. In my case bazarr was the culprit. I had to remove it and reinstall it from scratch. Now the problem is fixed.
  2. Hi, I'm having the same issue. Did you find where it comes from by any chance? Thanks.
  3. It should be fine. you don't have to run both. I gave you the -vv one just to see if PHP works. In your script you should run just the first command. I don't know why nextcloud says it didn't run though.
  4. Somethnig is wrong in that case. The command with -vv returns anything?
  5. I don't really know what to say. On my server it works just fine. Linux 5.19.14-Unraid. root@Tower:~# docker exec -it nextcloud sudo -u abc php -f /config/www/nextcloud/cron.php root@Tower:~# docker exec -it nextcloud sudo -u abc php -f /config/www/nextcloud/cron.php -vv PHP 7.4.26 (cli) (built: Nov 18 2021 21:39:13) ( NTS ) Copyright (c) The PHP Group Zend Engine v3.4.0, Copyright (c) Zend Technologies with Zend OPcache v7.4.26, Copyright (c), by Zend Technologies root@Tower:~# Thank you so much for all the hints you gave me. I don't know what's wrong with it. I suspected the previews as well. I generated all of them and run every repair command I found about nextcloud. I just breaks. I don't think is a hw resource problem either (CPU is at 50 ish % maybe), RAM is the same 50%. I have this NC instance since v16 or 17 and it worked great. I deleted everything, including docker image. I started fresh with new, nextcloud, new mariadb (not keeping appdata but starting from scratch). At some point it breaks. Last night it froze in an mp3 folder I had. Just 20 files or so. I did not track exactly when this started happen. I tought it was after a nextcloud update but it might as well be after the Unraid 6.11 update and it kept doing it on 6.11.1 as well. At the moment I won't use the WebUI and just let our phones to sync photos because that still works well. So I guess I'll revisit it every update from now on.
  6. First of all I'm sorry because I hijacked this section of the forum last few days. You can disable or remove an app from terminal. If you can SSH into your server (if not you can use the terminal from Unraid WebUI) you can run these commands: docker exec -it nextcloud occ app:disable mail or docker exec -it nextcloud occ app:remove mail If your container is not called nextcloud then replace it with your container name. Not sure if you can remove any app or if the app is really called mail (I deleted my nextcloud so I can't try ) If the app name is not exactly mail you can run the next command to see all the apps: docker exec -it nextcloud occ app:list To learn more about these commands you can visit https://docs.nextcloud.com/server/stable/admin_manual/configuration_server/occ_command.html
  7. So I started from scratch this morning. New appdata config, new container, new maria db, new redis. I copied the photos from the old instance and I managed to break it again. I t worked fine for a while, but if I tried to navigate fast trough the pictures, it just froze. I give up at this point.
  8. I use User Scripts to run the cron from the host as I said a few posts above. You can also run the same command from Unraid terminal just to test if it works. docker exec -it nextcloud sudo -u abc php -f /config/www/nextcloud/cron.php The linuxserver container uses abc user and group so you have to include it in the command.
  9. Thanks for the reply. I used the other container that pulls from official nextcloud docker and it worked better. After a few days that one frozen my server too. So I came back to this old config and lsio container. Thie one crashes every time. I will give it another shot with a new config, new db, as you did. I'm not to optimistic though. I have large downloads/uploads and collabora figured out. If you get stuck on this maybe I can help.
  10. I know this is probably related to nextcloud more than general support but I'm slowly dying here. Using Nextcloud WebUI crashes my server to the point I cannot access /mnt, so it manages to unmount everything or crush MD (maybe). Also Unraid WebUI does not work anymore. I still can SSH in and kinda see all the containers still running but they are unusable as long as they use a volume externally mounted. Even docker stop does not work. I don't know how to recover it from this state so I reboot. I can only reboot from SSH if I send the command twice. The server restarts and triggers a partity check every time this happens. Unfortunately syslog stops registering any events at the freeze moment so I cannot trace it further. I will attach the diagnostics before and after reboot. This happened since like two weeks ago and I tried different versions of Nextcloud. The same problem occures. The easiest way to reproduce it is to access a folder with some pictures in it, but sometimes it does it even when I'm in setting page etc. Any advice to trace this is very appreciated. tower-diagnostics-20221009-1519.zip tower-diagnostics-20221009-1508.zip
  11. Docker version of Home Assistant does not have the Supervisor section. You have to install every addon as a separate docker container. Because of this I prefer using it as a VM instead.
  12. Any follow up with this situation? It drives me creazy still. I've tried everything at this point and it keeps doing it.
  13. I'm curious how other users do it. I run the cron directly from the Unraid host using User Scripts. #!/bin/bash docker exec -i nextcloud sudo -u abc php -f /config/www/nextcloud/cron.php I run it every 5 min: */5 * * * *
  14. Not sure if it helps but this container uses abc user instead of www-data My data directory is owned by abc user and abc group with 0770 permissions.