Everything posted by Taddeusz
-
[Support] jasonbean - Apache Guacamole
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?
-
[Support] jasonbean - Apache Guacamole
Exactly what is it doing?
-
[Support] jasonbean - Apache Guacamole
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.
-
[Support] jasonbean - Apache Guacamole
I've pushed out a change to rollback the permission updates. The redirected catalina.out is still there.
-
udma crc error count
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.
-
[Support] jasonbean - Apache Guacamole
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.
-
[Support] jasonbean - Apache Guacamole
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.
-
udma crc error count
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.
-
udma crc error count
I guess I have some digging to do this weekend.
-
udma crc error count
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.
-
[Support] jasonbean - Apache Guacamole
Ok, give me a few moments and I'll publish it to latest. Then you can change your tag back and update.
-
[Support] jasonbean - Apache Guacamole
Ok, change your docker to "jasonbean/guacamole:0.9.14gs". Let me know if that changed things.
-
[Support] jasonbean - Apache Guacamole
Ok, if you don't mind briefly running a test version I can push out one with gs included later today.
-
**VIDEO GUIDE** How to Install MacOS Mojave or High Sierra as a VM
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?
-
[support] dlandon - ownCloud
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.
-
[support] dlandon - ownCloud
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.
-
[support] dlandon - ownCloud
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?
-
[Support] jasonbean - Apache Guacamole
In mine the map directive is at the very top of my default file outside the server directives.
-
[Support] jasonbean - Apache Guacamole
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.
-
[Support] jasonbean - Apache Guacamole
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.
-
[Support] jasonbean - Apache Guacamole
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?
-
[Support] jasonbean - Apache Guacamole
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.
-
[Support] jasonbean - Apache Guacamole
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;
-
[Support] jasonbean - Apache Guacamole
Check out this page: http://guacamole.apache.org/doc/gug/proxying-guacamole.html You want to make sure you're also proxying Web Sockets.
-
[Support] jasonbean - Apache Guacamole
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.