cam217

Members
  • Posts

    57
  • Joined

  • Last visited

Everything posted by cam217

  1. Same issue. Paperless needed to connect to the Redis DB to work properly. Installing the CA Docker Patch plugin solved the problem and enabled the updates for Paperless and Redis as @Abe677 pointed out. Thanks!
  2. Hi, Did you try swag container from linuxserver.io? This is what I use, works great and is documented. I also have a domain name, do you?
  3. Check logs for errors. If you find some post them here.
  4. Hi guys, I updated to paperless-ngx this year and I have issues with my already added thumbnail documents. If I add a new file it works but I don't get the thumbnail for documents that were added going to paperless-ngx. Accessing files is fine. document_sanity_checker detects all the issues but it does not fix it. How do I fix it? Is there a command to update all thumbnails based on files sorted? EDIT: Fixed using the command document_thumbnail and fixing errors by hand when necessary.
  5. Hi, For some reasons I can't really explain, I lost a good number of thumbnails in the document view. Is there a way I can regenerate them? Thank you.
  6. I managed to make the USB stick work again late October. Then I had to go abroad for work for two weeks. Back home, the server doesn't start so I investigate more and it seems that some sectors of the USB stick can't be read... Just ordered a new stick now.
  7. Hi, It seems that my USB stick is failing writes while updating to unraid 6.11.1. It tried updating two times and it did fail both times. Do I need to change my USB key for sure? Thanks.
  8. I moved from paperless to paperless-ngx and had some weird issue on some of my files. I first removed the encryption and it seemed to have worked fine from what I can tell. The import seemed to have worked fine but then I realised some files lost their .pdf extension. Those files were having issues then when using the quick look. I thought I could just get them back from the original folder, remove the files from paperless web interface then add them again so it's re-processed properly. It did work but at some point I had errors saying "Not consuming... It is a duplicate". It seems these files stays in the 'consume' folder, they are not moved to the 'originals' folder so I don't know what to do. I guess I should look at the database but I'm not sure how I can edit it to fix it all. Not sure what I did wrong to get this behavior, any help would be much appreciated. Thanks. The auto tagging seems way smarter than my previous paperless. The options to modify tags is a big help as it was a real pain one by one! EDIT: Seems like they all are there but for some reasons tags has been messed up. Still fixing...
  9. Thanks for the help JorgeB 👌 The USB creator did not detect my USB stick that was working for 4 years. Used the manual installation way and it worked nicely.
  10. I'm not confident like this but I can know by opening the server as they are physically labeled. Not sure about the registration key though. Should I download the key and put it in the config folder on the flash drive? Or should I restore the flash from a backup? I'm trying to avoid free pain 😅
  11. Hello all, It seems this morning my server stopped last night for some reason, probably due to a loss of electric power. This morning my server does not start properly. It does not recognise the hdd configuration that was running and it also lost the registration key for some reason. What should I do to start it again, if I assign the disks it says it will erase drives. I should mention my drives are encrypted and I can get my registration key and a flash backup from 'My Server' section here on the forum. Thanks
  12. I don't think that, no. What video are you talking about?
  13. Interesting stuff. I have to test a VM for CAD application soon that is running in unraid. It has also 16 cores (AMD Ryzen 9 3900x), 24Gb of RAM and a Quadro P2000 passed through and the VM runs off a Samsung 980 Pro SSD. We'll see what I can get out of it. I would be interested in optimisations you can think of to improve performance if there are any things that can help.
  14. It was using elasticseach5 which is an ols version maybe that is been discontinued and the free version of diskover does not work with newer version of elasticsearch...
  15. You've got to follow the video tutorial. Each script has to be run once. Then the helper script has to be modified with the name of your VM... Hence the 'failed to get domain 'put the name of the vm here'
  16. I can't help much here as I don't have any AMD graphics card to try with. You could post your VM XML instead of the VM configuration screenshot as it is way more precise in what's actually used to configure your VM. User interfaces lacks a number of parameters that text configuration files show.
  17. I only removed the install media and it worked. I just could not pass through the graphics card as it is not supported by macOS.
  18. Sorry, I can’t help beyond Ed’s video scope for pass through as I’m not knowledgeable enough for that matter.
  19. These is also a video from Ed explaining the graphics card passthrough. Eventually you'll need to dump your card firmware. Been there as well for a windows 10 VM, and I'm fucked as Quadro cards with pascal architecture will not work in macOS 😅 Good luck 😊
  20. If you have not backed it up I don't think there is. Maybe you can get it somewhere in this topic. Mine is already modified a few posts up. EDIT: You could try to modify yours with bits of mine. I think the one thing that messed things up for me was modifying the SATA drives.
  21. Yep, one field at a time so you know what's causing an issue. Keep in mind that you need to run Ed's user script each time and modify it if you get an unusual amount of cores.
  22. I went down this exact path last week-end. Get back to your stock XML and edit one by one ram and CPUs and start over the VM to make sure it does starts each time you modify anything. The only thing that does not work here when you're stuck on that screen is your VM XML.
  23. It should work fine but here they are (links expires in a week): 1_macinabox_helper ; 1_macinabox_vmready_notify
  24. As with most, logs doesn't show anything specific. The booting process hangs for ever and I have to force the VM to shutdown. As I mentioned in my first post, I use a Nvidia Quadro P2000. That same GPU is also used (not at the same time of course) in an other VM which uses Windows 10 Pro passed through and it works with the vbios. To try to add the graphics card I add the following code <hostdev mode='subsystem' type='pci' managed='yes'> <driver name='vfio'/> <source> <address domain='0x0000' bus='0x0b' slot='0x00' function='0x0'/> </source> <rom file='/mnt/user/isos/vbios/Quadro_P2000_DL.rom'/> <address type='pci' domain='0x0000' bus='0x04' slot='0x00' function='0x0' multifunction='on'/> </hostdev> <hostdev mode='subsystem' type='pci' managed='yes'> <driver name='vfio'/> <source> <address domain='0x0000' bus='0x0b' slot='0x00' function='0x1'/> </source> <address type='pci' domain='0x0000' bus='0x04' slot='0x00' function='0x1'/> </hostdev> In place of <graphics type='vnc' port='-1' autoport='yes' websocket='-1' listen='0.0.0.0' keymap='en-us'> <listen type='address' address='0.0.0.0'/> </graphics> <video> <model type='qxl' ram='65536' vram='65536' vgamem='16384' heads='1' primary='yes'/> <address type='pci' domain='0x0000' bus='0x00' slot='0x01' function='0x0'/> </video> Thanks for helping 😊