MarbleComa

Members
  • Posts

    11
  • Joined

  • Last visited

Recent Profile Visitors

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

MarbleComa's Achievements

Noob

Noob (1/14)

1

Reputation

  1. @ljm42I moved my server to new hardware, and now the problem is gone. No idea what was causing the problem still but it's fine now.
  2. Thanks for the suggestion. I just tried it, and reloading nginx does not work. It appears that the nginx reload completes successfully, but it does not fix the WebGUI. I still had to run the php restart command to fix the WebGUI.
  3. All the tabs in the WebGUI work perfectly for me except for the "DASHBOARD" tab. If I click on it, then it simply never loads, and I am then unable to click away to any of the other tabs. This issue seems to affect each browser session individually. For example, if I click on the "DASHBOARD" tab in Chrome on my desktop, then the WebGUI in Chrome on my desktop will not work. Even if I open a new tab, this issue will persist. However, the WebGUI does still work if I access it via Firefox from my desktop. If I then click on the "DASHBOARD" tab in Firefox, then the WebGUI in Firefox on my desktop will not work. The same behavior also applies to other computers that I have tested. The only way I have found to make the WebGUI start working again after clicking on the "DASHBOARD" tab is to restart php-fpm. I generally do this by logging into the WebGUI from my laptop and running the command "/etc/rc.d/rc.php-fpm restart" in the Unraid terminal. In the attached syslog file, you will see my desktop (10.10.20.15) and my laptop (10.10.20.204). I'm running Unraid 6.11.5. I have attached the anonymized diagnostics file, as well as an excerpt from the anonymized syslog that just shows the logs from when I was purposefully triggering this issue and restarting php-fpm. Luckily, the WebGUI defaults to the "MAIN" tab, so I'm still able to use Unraid perfectly well. But if anyone has an idea of how I can fix this issue, that would be great. I'm happy to test ideas or provide more information! Dashboard tab crash syslog.txt tower-diagnostics-20230206-1456.zip
  4. The remote access is also unavailable, neither via the my servers remote access nor wireguard. I'll setup another computer on my network as a remote syslog server after I get unraid running again tomorrow. There's some consistency now in the server being unreachable two evenings in a row. Hopefully the logging will provide some explanation.
  5. So once again the server is unreachable, and I haven't done anything to it besides updating the my servers plugin and rebooting yesterday. When I get home tomorrow I'll reboot it again. Is there a way I can install the previous release of the my servers plugin or should I just uninstall it entirely?
  6. Thanks for the suggestion. Unfortunately, I couldn't access the server via command line either, so I don't have any diagnostics available. I rebooted the server, and everything seems to be fine again.
  7. I'm on the 6.10rc2 release, and I installed the myservers plugin earlier today without issue. I was even able to confirm that my server was showing online in the myservers portal and I could reach it via the remote access link. However, now it's been a few hours, and I can't reach my server at all locally or remotely. I see someone else had the same issue in the unraid subreddit . Is anyone else experiencing this?
  8. I tried removing the IP from the field, as well as leaving the field completely blank, but neither of those worked for me. So far I have only been able to get into the web ui by using an external DB. However, whenever I click on an Application, I just see a loading icon in the Services section. Meanwhile, the log is throwing errors, as you can see below. Ultimately, I get kicked back to the homepage of the web ui with the error message "Error during synchronization between servers: Unexpected end of file from server executing GET http://localhost:3000/status." I'm using the Arcface model, and I attached the full log file below. compreface-gpu_error_log.txt
  9. Thanks for making Compreface available for Unraid! Does the template need some additional fields added? I would like to try out the GPU version, which I guess at least requires the NVIDIA_VISIBLE_DEVICES and NVIDIA_DRIVER_CAPABILITIES variables to be provided. I also see there's no AppData mapping, but I would guess that's also required. Many thanks!
  10. Hi @ndetar, thanks for creating this unraid template! I've been trying for a few hours to get the deepstack gpu docker running on my system, but it seems that attempting to use a 3060 ti leads to quite some issues. With the default installation directly from the deepquestai/deepstack:gpu repository, nothing works, and I was able to determine that the included version of pytorch does not support the 3060 ti. I ran cat ../logs/stderr.txt and found the following message: "NVIDIA GeForce RTX 3060 ti with CUDA capability sm_86 is not compatible with the current PyTorch installation. The current PyTorch install supports CUDA capabilities sm_37 sm_50 sm_60 sm_70. If you want to use the NVIDIA GeForce RTX 3060 ti GPU with PyTorch." I did some reading on the pytorch site (https://pytorch.org/get-started/locally/), and I found the pip install command to get their LTS (1.8.2) version which supports cuda 11.1. As a side note, I'm on Unraid 6.10.0-rc2 and the Nvidia driver is CUDA version 11.5. I updated both torch and torch vision in the container and that allows the object detection to run on the 3060 ti (some progress, yay!). Unfortunately, now I'm getting a new error with the face detection that I haven't been able to solve despite my best googling. The output of cat ../logs/stderr.txt is below: Traceback (most recent call last): File "/app/intelligencelayer/shared/face.py", line 307, in face det = detector.predict(img, 0.55) File "/app/intelligencelayer/shared/./process.py", line 61, in predict pred = self.model(img, augment=False)[0] File "/usr/local/lib/python3.7/dist-packages/torch/nn/modules/module.py", line 1102, in _call_impl return forward_call(*input, **kwargs) File "/app/intelligencelayer/shared/./models/yolo.py", line 149, in forward return self.forward_once(x, profile) # single-scale inference, train File "/app/intelligencelayer/shared/./models/yolo.py", line 176, in forward_once x = m(x) # run File "/usr/local/lib/python3.7/dist-packages/torch/nn/modules/module.py", line 1102, in _call_impl return forward_call(*input, **kwargs) File "/app/intelligencelayer/shared/./models/common.py", line 109, in forward 1, File "/usr/local/lib/python3.7/dist-packages/torch/nn/modules/module.py", line 1102, in _call_impl return forward_call(*input, **kwargs) File "/app/intelligencelayer/shared/./models/common.py", line 32, in forward return self.act(self.bn(self.conv(x))) File "/usr/local/lib/python3.7/dist-packages/torch/nn/modules/module.py", line 1102, in _call_impl return forward_call(*input, **kwargs) File "/usr/local/lib/python3.7/dist-packages/torch/nn/modules/activation.py", line 461, in forward return F.hardswish(input, self.inplace) File "/usr/local/lib/python3.7/dist-packages/torch/nn/modules/module.py", line 1178, in __getattr__ type(self).__name__, name)) AttributeError: 'Hardswish' object has no attribute 'inplace' Do you have any recommendation on how to proceed here? Many thanks!