Wong

Members
  • Posts

    62
  • Joined

  • Last visited

Everything posted by Wong

  1. Thank you very much @JorgeB. All errors are solved. This is why I like Unraid community. Top notch support.
  2. Now the ZPOOL is healthy state. Thanks. But how do I solve the unmountable error on my cache drive?
  3. @JorgeB I have ran the command you suggested. Yes, I did have manually import the zpool because I was unable to start the array previously. I stop the array, unselected zpool device, start array, then stop array, select the same zpool device. then start array.
  4. Here you go. Thanks for responding. tower-diagnostics-20240216-0102.zip
  5. History: I recently converted my cache_sata pool to ZFS but only a single drive. I have added a new SSD to my cache_sata pool and it auto-mirror it. During mirror process, I accidentally stopped the array and unselected the new SSD from the pool from the Main tab as I was unaware the mirror as already running. After that, I allow it to mirror and it has completed successfully. However, ZFS Master stated my ZFS pool is DEGRADED. and my two cache_sata drive is unmountable. Though all this error appear, my docker and array are working normally. Please assist to advise on how remove the umountable error and the DEGRADED status without destroying my cache data. Im still very new to ZFS, so any advise posted, please assist to show the exact command for me to run. Thank you in advance for the helps.
  6. Recently just updated my Nextcloud docker to 26.0.0 Can anyone guide me on how to solve the security red warning here? I have solved the orange warning only. 
  7. Just a record for anyone in the future encounter similar issue as me. I manage to solve it. Step 1: Remove the existing onlyoffice docker and it's image. Make sure to also delete onlyoffice file inside the appdata share. Step 2: Reinstall the onlyoffice docker. As of 15/11/2022, the docker template had one small issue. Credit to @eyesfit. Please edit the Database path as shown in below. Step 3: Remember to save or edit your secret keys. Then click apply. Step 4: Copy your cert.crt, cert.key and fullchain.pem from your nginx manager or swag to the /mnt/user/appdata/onlyofficeds/Data. Do not create a cert folder and put in there. This will cause your OnlyOffice to failed to start due to nginx config error. Step 5: Rename your cert.crt to onlyoffice.crt , cert.key to onlyoffice.key , fullchain.pem to dhparam.pem . Step 6: Do not follow the Spaceinvader video regarding the nginx template. Use the latest documentserver template in your nginx manager or swag. And adjust accordingly to your domain. Step 7: Restart docker for everything related. DONE! you good to go with the latest version. Please give a like my comment if it help you! thanks
  8. @Siwat2545Can you look into this issue if possible? Im using the latest version of the docker.
  9. I am getting postgresql issue with only office docker. Although the docker able to start, I cannot connect to nextcloud. Anyone facing the same issue? Anyone could you share or have any idea what I can do?
  10. Just installed recently, I restarted my unraid after installing the plugin. It does show online from time to time but it doesn't last longer than 10 seconds. I have seen different type of errors as well, such as Unexpected token and Timed-out connecting to "https://mothership.unraid.net/relay" . Anyone could help me with this?
  11. My cache drive is almost full. So I recently added new SSD to my unraid and use it as a additional cache drive, and named cache pool as "cache_sata". I configurate to move all my existing file such as appdata and etc to "cache_sata". I configurate my existing cache to the "Prefer" into the "cache_sata" and invoked mover to move everything. Everything including the docker image moved perfectly, except my appdata share. Please have a look of the screenshot of what I mean. It got split into two regardless if I have forced to "Prefer" to "cache_sata" only. Some appdata content still and currently getting modified in both cache pool. Before upgrade, I have an existing ssd drive, was named cache pool as "cache". However, after invoked the mover, I only renamed the existing SSD drive from "cache" to "cache_nvme". Not sure if this help. Is for your reference. Now I want to move all my appdata content to only "cache_sata" only. Anyone could suggest what I can do?
  12. Anyone here having some issue loading the only office when opening a document in nextcloud? Mine keep buffering very long before open my document. And most of the time, it buffer indefinitely. However, if I clear browser cache or uses incognito, it load without any issue. I uses Brave browser.
  13. Error when trying to connect (Not supported version) (version 6.0.2.5) Does anyone have this same error? I not sure when the error started but I just realized it today. It was working fine for me before.
  14. I have manage to passthrough GPU but how can I passthrough the onboard microphone so that I can just plug my headphones into the audiojack and get an audio input on my windows. Below are my IOMMU group for reference. I can see my intel audio devices are not in its onw IOMMU group. So is not possible to passthrough the onboard soundcard? If is not possible to separate the group. It is possible if I just buy a "usb to female audio jack adapter" into one of the usb port, then plug my headphone into the adapter, and passthrough as a usb devices. Will that work?
  15. Has anyone solved this warning? I am using subdomain instead of subfolder. I can't seem to find an official solution to the Unraid version.
  16. Have anyone successfully reverse proxy this docker using swag provided qbittorrent subdomain conf. file? If anyone could help me see if I did any mistake to the swag conf. file. ## Version 2021/05/18 # make sure that your dns has a cname set for qbittorrent and that your qbittorrent container is not using a base url server { listen 443 ssl; listen [::]:443 ssl; server_name qbit.*; include /config/nginx/ssl.conf; client_max_body_size 0; # enable for ldap auth, fill in ldap details in ldap.conf #include /config/nginx/ldap.conf; # enable for Authelia #include /config/nginx/authelia-server.conf; location / { # enable the next two lines for http auth #auth_basic "Restricted"; #auth_basic_user_file /config/nginx/.htpasswd; # enable the next two lines for ldap auth #auth_request /auth; #error_page 401 =200 /ldaplogin; # enable for Authelia #include /config/nginx/authelia-location.conf; include /config/nginx/proxy.conf; include /config/nginx/resolver.conf; set $upstream_app binhex-qbittorrentvpn; set $upstream_port 8585; set $upstream_proto http; proxy_pass $upstream_proto://$upstream_app:$upstream_port; proxy_set_header Referer ''; proxy_set_header Host $upstream_app:$upstream_port; } location ~ (/qbittorrent)?/api { include /config/nginx/proxy.conf; include /config/nginx/resolver.conf; set $upstream_app binhex-qbittorrentvpn; set $upstream_port 8585; set $upstream_proto http; proxy_pass $upstream_proto://$upstream_app:$upstream_port; rewrite /qbittorrent(.*) $1 break; proxy_set_header Referer ''; proxy_set_header Host $upstream_app:$upstream_port; } location ~ (/qbittorrent)?/command { include /config/nginx/proxy.conf; include /config/nginx/resolver.conf; set $upstream_app binhex-qbittorrentvpn; set $upstream_port 8585; set $upstream_proto http; proxy_pass $upstream_proto://$upstream_app:$upstream_port; rewrite /qbittorrent(.*) $1 break; proxy_set_header Referer ''; proxy_set_header Host $upstream_app:$upstream_port; } location ~ (/qbittorrent)?/query { include /config/nginx/proxy.conf; include /config/nginx/resolver.conf; set $upstream_app binhex-qbittorrentvpn; set $upstream_port 8585; set $upstream_proto http; proxy_pass $upstream_proto://$upstream_app:$upstream_port; rewrite /qbittorrent(.*) $1 break; proxy_set_header Referer ''; proxy_set_header Host $upstream_app:$upstream_port; } location ~ (/qbittorrent)?/login { include /config/nginx/proxy.conf; include /config/nginx/resolver.conf; set $upstream_app binhex-qbittorrentvpn; set $upstream_port 8585; set $upstream_proto http; proxy_pass $upstream_proto://$upstream_app:$upstream_port; rewrite /qbittorrent(.*) $1 break; proxy_set_header Referer ''; proxy_set_header Host $upstream_app:$upstream_port; } location ~ (/qbittorrent)?/sync { include /config/nginx/proxy.conf; include /config/nginx/resolver.conf; set $upstream_app binhex-qbittorrentvpn; set $upstream_port 8585; set $upstream_proto http; proxy_pass $upstream_proto://$upstream_app:$upstream_port; rewrite /qbittorrent(.*) $1 break; proxy_set_header Referer ''; proxy_set_header Host $upstream_app:$upstream_port; } }
  17. This work properly with this modification to the conf. file. Thank alot. Unraid still remain to have the best community in my opinion!
  18. I found out today my swag broke. It was working properly in the past until today. Does anyone encounter the same issue? If so, do you guy know any fix? My swag broke with this log error. This is my CONF. file setup for only office subdomain
  19. Hi, thanks for the reply. After I rebooted, everything goes back to normal. I was worrying if I reboot, my file would get corrupted after reading some old forum about cache drive been full. But clearly, it wasn't the case. For future reader, this issue arrive when I was transferring a single big file into my cache drive without realising my cache drive is full, which cause an internal error in my Unraid server. After I invoke the Mover, my cache drive is clear up. Then, I rebooted my server. It all went back to normal operation.
  20. I am not sure what is the issue here. All my docker stop working. And everytime I try to restart it, it gave me this error code 403. I read some forum said is the log file is too full or something. Can anyone help me with this? I attached the system log file below. Let me know if there any other log file you want to see through command line. Just a headups, I am not good with command line. tower-syslog-20210116-0743.zip
  21. Your feedback solved my problem. Yeah I was running on the Unraid terminal instead of the docker console. Thanks for the helps!!!
  22. Thanks for the quick reply, you guys are awesome. I am still quite bad at terminal command. I just copy and pasted the command line just now, it stated command not found. Could you list down all the command line I should execute? Thanks.
  23. Updating to 2.0.3 wasn't really smooth though. There were errors throughout the updater process but I manage to install it. However, how do I solve the warning given by Nextcloud? Hopefully I am not the one seeing this only.
  24. When I install the docker by nunofgs, I got the following errors. Is it because it cannot detect my 3D printer? I am using Creality Ender-3. docker: Error response from daemon: error gathering device information while adding custom device "/dev/ttyACM0": no such file or directory. This is my template input.