Skip to content
View in the app

A better way to browse. Learn more.

Unraid

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Taddeusz

Community Developer
  • Joined

  • Last visited

Everything posted by Taddeusz

  1. When I say exactly, I mean does the page load but it's just white with no errors. Or do you get a 404 or other error trying to load the page? What permissions are on your ApacheGuacamole appdata folder?
  2. Exactly what is it doing?
  3. For those having problems let me know what the exact problem is. Does the login form show or do you get a white page and no visible error? Do any errors show in your Docker log or catalina.out? I believe there are problems with file permissions going on but I guess I'm not quite understanding the root of the problem.
  4. I've pushed out a change to rollback the permission updates. The redirected catalina.out is still there.
  5. Well, had my newest drive offlined Friday night. Spent a lot of yesterday troubleshooting. I've come to the conclusion that there's something wrong with the backplane in my drive cage. It's a Rosewill RSV-SATA-Cage-34. I removed the backplane and rigged up some fans for cooling. Direct connected all the drives. It ran a rebuild just fine with no more UDMA CRC errors. I tried to replace the thermal compound on my SAS card but they used thermal glue so it's not coming off. I've got a couple drive cages coming but they don't have backplanes. Also Rosewill but really low cost.
  6. The fail message after starting tomcat has always been there. I’m not sure why it shows that. Does the page load but just shows nothing? If so, that means it can’t connect to your authentication source. Look at the catalina.out file and see if there are any errors there.
  7. I have updated the the image to output Tomcat's catalina.out file /config/guacamole/log to help troubleshooting. I also changed the scripts to always update file permissions to try to mitigate a problem where it appears that the database can't be read. Please let me know if you're having any issues.
  8. I know that card gets hot. It just has a heatsink on it. I'll look at putting a fan on. I'll at least put some fresh thermal compound on there. It could probably use it.
  9. I guess I have some digging to do this weekend.
  10. I'm on 6.5.2 and a week ago I started getting a lot of these errors and then write errors which offlined my newest drive, only in service a month. I replaced the drive and have been fine until now I received 1 UDMA CRC error with the brand new drive. Diagnostics on the "old" new drive passed on a different system with only 3Gb/s SATA. In fact, I just RMA'd the drive and shipped it today. I had actually tried to put it back in service but as soon as unRAID booted back up it started to get UDMA CRC errors again on a different tray. I'm running an IBM M1015 reflashed to an LSI 9211-8i. First time I've ever seen this kind of thing. Since this is something that all of a sudden just started happening I'm not sure what to do. The two drives I've been having issues with are in a 4 slot drive cage. The other 5 drives are direct connected. The drives I've been having trouble with are new old stock HGST 7K4000 2TB drives. Not sure whether the cage or the controller or SAS to 4xSATA cable could be the issue? I have a shorter cable I could try. For now it's just a single error so nothing has gone offline again. This is still troubling.
  11. Ok, give me a few moments and I'll publish it to latest. Then you can change your tag back and update.
  12. Ok, change your docker to "jasonbean/guacamole:0.9.14gs". Let me know if that changed things.
  13. Ok, if you don't mind briefly running a test version I can push out one with gs included later today.
  14. I'm trying to run High Sierra from a VM without pass-through GPU but get a lot of video corruption. Especially from Google Chrome. Any way to solve this?
  15. Just to give some closure on my own issue I have moved on to Nextcloud. It is a fork of ownCloud and, IMHO, is better. With Nextcloud everything works as expected. It also has the benefit of using local storage as "external". It just all works.
  16. Ok, I guess the problem I'm actually having is that I have a "Data" share on my unRAID server that I am mounting in ownCloud via SMB. When I try to save files to this SMB share it fails.
  17. I'm having trouble running this through my let's encrypt nginx server. I'm running the app on my iPad. I can login and view files but get errors when it tries to upload files. I tried following these instructions which got me to this point: https://doc.owncloud.org/server/9.0/admin_manual/configuration_server/reverse_proxy_configuration.html My nginx configuration is as follows: location ^~ /owncloud/ { include /config/nginx/proxy.conf; proxy_pass https://192.168.22.90:8443/; proxy_buffering off; } My ownCloud config has these values: 'trusted_proxies' => ['192.168.22.90'], 'overwritehost' => '<my public hostname>', 'overwriteprotocol' => 'https', 'overwritewebroot' => 'owncloud', 'overwritecondaddr' => '^192\.168\.22\.90$', What am I doing wrong?
  18. In mine the map directive is at the very top of my default file outside the server directives.
  19. Since you've moved to Nginx here's my reverse proxy settings for my own: map $http_upgrade $connection_upgrade { default upgrade; '' close; } location ^~ /guacamole/ { proxy_pass http://<replace your ip>:<replace your port>/guacamole/; proxy_buffering off; proxy_http_version 1.1; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection $http_connection; access_log off; } The proxy_buffering off is very important if you read their documentation.
  20. No, this Docker does not contain the Apache HTTP Server. You would need to install the separate Apache Server Docker to do reverse proxy and other web hosting duties. The only thing this includes is Apache Tomcat to run the Guacamole Client. Tomcat is built to run Java servlets. It's not designed to fill the duties of the Apache HTTP Server.
  21. Is this my Docker? That looks like a REALLY old version. I can't remember how long ago the VNC settings looked like that. Regardless, what does your log output look like from when you attempt to connect?
  22. Make sure you put your hostname and port under the "parameters" section. A few versions ago they added a "guacamole proxy parameters" section which confuses some people.
  23. Nginx doesn't automatically proxy web sockets. You have to include the two lines so it will automatically upgrade the connection if a web socket request is received. However, it doesn't need a separate extension like Apache. proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection $http_connection;
  24. Check out this page: http://guacamole.apache.org/doc/gug/proxying-guacamole.html You want to make sure you're also proxying Web Sockets.
  25. To my knowledge there's nothing that would cause this. You can revert to the previous version by specifying the tag "0.9.13". In other words, change the repository to "jasonbean/guacamole:0.9.13" and apply. unRAID will download the older version. If that doesn't fix things you may have a bad network switch or something.

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.