httpTunnel and CORS

2023-03-02 Thread Cedric Biedermann
Hi, I try to use the Guacamole.httpTunnel as described here: https://guacamole.apache.org/doc/guacamole-common-js/Guacamole.HTTPTunnel.html , but I just get CORS errors. On my client I set: 'Accept': '*/*', 'Accept-Encoding': '*', 'Accept-Language': '*', 'Access-Control-Request-Headers': '*',

Re: Guacamole connection opened new tab

2023-03-02 Thread Nick Couchman
On Thu, Mar 2, 2023 at 9:36 AM Chris Nigh wrote: > > Hi All, > > > > I was testing out Guac v1.4.0 with my users and they mentioned issues when > trying to launch a new connection from the home screen into a new browser tab > (right click -> open in new tab). In the new tab, the user only gets

Guacamole connection opened new tab

2023-03-02 Thread Chris Nigh
Hi All, I was testing out Guac v1.4.0 with my users and they mentioned issues when trying to launch a new connection from the home screen into a new browser tab (right click -> open in new tab). In the new tab, the user only gets a blank black screen. >From my experience it works in v1.3.0

Re: Guacamole 1.5.0 not working in docker

2023-03-02 Thread Nick Couchman
On Thu, Mar 2, 2023 at 7:01 AM Fischer, Manuel wrote: > > Its working now. I found the reason. In postgres, you have to do the > > CREATE USER guacamole_user WITH PASSWORD 'some_password'; > > on the postgres DB (all users and permissions are located in this DB) and > > GRANT

AW: Guacamole 1.5.0 not working in docker

2023-03-02 Thread Fischer, Manuel
Its working now. I found the reason. In postgres, you have to do the CREATE USER guacamole_user WITH PASSWORD 'some_password'; on the postgres DB (all users and permissions are located in this DB) and GRANT SELECT,INSERT,UPDATE,DELETE ON ALL TABLES IN SCHEMA public TO guacamole_user; GRANT

AW: Guacamole 1.5.0 not working in docker

2023-03-02 Thread Fischer, Manuel
> On Wed, Mar 1, 2023 at 12:11 PM Rolf Zurbrügg > wrote: >> >> Hi Manuel, >> >> It seems, like your are not running the init script for the DB. Have you >> tried running this: >> >> ``` >> docker run --rm guacamole/guacamole /opt/guacamole/bin/initdb.sh >> --mysql > guac_db.sql ``` From the