Re: Configuring connections to use recording storage for docker version

2023-05-18 Thread Michael Jumper
On 5/17/23 22:18, Golota S.V. wrote: I followed your recommendations. but the result is the same I can't access the records. maybe it's about access for the tomcat group, but there is no such group in the guacd container. Yes - you'll need to ensure that the Tomcat group has read permission.

Re: Configuring connections to use recording storage for docker version

2023-05-17 Thread Michael Jumper
On 5/17/23 02:16, Golota S.V. wrote: Hello!! I have a docker version of guacamole:latest set up trying to set up connection recording:created a directory for recording changed the commands chown 1000:1000, chmod 2750 in the web admin settings specified the directory name and file name (${HISTOR

Re: Users can connect only once to Guacamole Client page.

2023-05-13 Thread Michael Jumper
On 5/13/23 18:32, Gabriel Huerta Araujo wrote: Thanks Michael My observations: You should use AbstractUserContext (you'll end up implementing a ton of stub functions otherwise), override invalidate(), and implement any remaining functions that have no implementation according to >> the JavaD

Re: Users can connect only once to Guacamole Client page.

2023-05-12 Thread Michael Jumper
On 5/12/23 12:22, Gabriel Huerta Araujo wrote: To perform an action when a user logs in, you would implement an extension containing your own AuthentcationProvider that performs whatever tasks you need within getUserContext(): https://guacamole.apache.org/doc/guacamole-ext/org/apache/guacamole/

Re: Users can connect only once to Guacamole Client page.

2023-05-11 Thread Michael Jumper
On 5/11/23 19:32, Gabriel Huerta Araujo wrote: My question is related to when a user enters into Guacamole web application in a computer and they should not enter with their same account into another computer. I would try to change Guacamole application, question here is where I would do it? Th

Re: File Transfer Stopped working

2023-05-11 Thread Michael Jumper
Do you see any errors in the Windows event logs? - Mike On 5/9/23 21:17, Dylan Francis wrote: I've tried closing and reopening the Explorer window, disconnecting and reconnecting, and restarting the machine entirely to no avail. The syslog and catalina.out logs generated when I initiate an R

Re: File Transfer Stopped working

2023-05-09 Thread Michael Jumper
On 5/9/23 16:07, Dylan Francis wrote: We had previously been successful in transferring files to/from machines via RDP but today noticed that it is no longer working. The tsclient drive appears, but it is empty. There is no tsclient drive. The entry you see in Windows explorer there is Window

Re: Dont understand user and group management when it comes to inheritance

2023-05-05 Thread Michael Jumper
On 5/5/23 04:26, Fischer, Manuel wrote: Hi all, we would like to setup a system with local users first and switch to ldap or openid/saml later when its available in our environment. I tried to setup a system with a global system administrator and with some group administrators who only have

Re: Performance Differences between Apache Guacamole with VNC and Native Mac-to-Mac Screen Sharing

2023-05-04 Thread Michael Jumper
Yes. - Mike On 5/4/23 08:45, Doug Baggett wrote: Thanks, I was not aware of NuoRDS. Do you mean you could set up NuoRDS on a Mac, then use Guacamole to do an RDP connection to it instead of VNC? On Thu, May 4, 2023 at 11:28 AM Michael Jumper <mailto:mjum...@apache.org>> wrote:

Re: Resource 404 error after packaging with Maven

2023-05-04 Thread Michael Jumper
lations/de.json", "translations/en.json", "translations/es.json", "translations/fr.json", "translations/it.json", "translations/ja.json", "translations/ko.json", "transla

Re: Performance Differences between Apache Guacamole with VNC and Native Mac-to-Mac Screen Sharing

2023-05-04 Thread Michael Jumper
Yes, Mac-to-Mac screen sharing uses a proprietary protocol based on VNC. When a normal VNC client connects to a Mac using standard VNC, a different and far less efficient protocol ends up being used. There are other screen sharing solutions for Mac that both implement standard protocols and ar

Re: Resource 404 error after packaging with Maven

2023-05-03 Thread Michael Jumper
On 5/3/23 08:39, Nick Couchman wrote: On Wed, May 3, 2023 at 11:29 AM Willem van de Mheen wrote: I’m working on a Guacamole branding extension and when I create a jar file by zipping the directory, I can load the extension and images load just fine. The strange thing is that when I package t

Re: Removing /guacamole

2023-04-28 Thread Michael Jumper
Tomcat will serve webapps from paths based on the filenames of their .war files. If you rename "guacamole.war" to "ROOT.war", it will be served from / instead of /guacamole. - Mike On Fri, Apr 28, 2023 at 2:33 PM Ivanmarcus wrote: > > One easy way to do this, but keeping everything else intact,

Re: ESXi VNC over websocket connection

2023-04-27 Thread Michael Jumper
On Thu, Apr 27, 2023, 2:55 PM Stephen Young wrote: > Hi all, > > In ESXi 7.0, VMWare has removed TCP access to the bundled VNC server built > into their ESXi hypervisor. Instead the VNC protocol is tunneled over a > websocket. Are there any plans to support VNC over websockets to facilitate > con

Re: Change to the way of authenticating provided by Guacamole

2023-04-26 Thread Michael Jumper
On Wed, Apr 26, 2023, 6:30 PM Nick Couchman wrote: > On Sat, Apr 22, 2023 at 8:09 PM Gabriel Huerta Araujo > wrote: > > > > Thanks a lot Michael and Nick for your valuable help. > > > > > > > > I found out that I was doing something wrong. The Tacacs authentication > provider jar was made with G

Re: Issue with Guacamole 1.5.0, OpenID and Totp

2023-04-23 Thread Michael Jumper
Both TOTP and OpenID have anti-replay defenses built in that prevent the same auth data from being submitted twice. This works great when either is used independently, but when combined they conflict with each other. The same occurs when TOTP is combined with SAML, as well as some other combination

Re: Still can't get recordings working 100%

2023-04-21 Thread Michael Jumper
This is because you are storing recordings beneath a directory that you are also using as the template for GUACAMOLE_HOME. When you set GUACAMOLE_HOME within the Docker image, the container will attempt to make a copy of the contents of that directory and then overlay any additional configuration f

Re: Change to the way of authenticating provided by Guacamole

2023-04-19 Thread Michael Jumper
There's a lot here you can probably get rid of, unless you truly need dependency injection via Guice for some other purpose. Why are you checking the username using indexOf()? - Mike On Wed, Apr 19, 2023, 9:29 PM Gabriel Huerta Araujo wrote: > This is class which authenticates, there is just o

Re: Change to the way of authenticating provided by Guacamole

2023-04-18 Thread Michael Jumper
On Tue, Apr 18, 2023, 6:23 PM Gabriel Huerta Araujo wrote: > ... > > It was like this > > @Override > > public UserContext getUserContext(AuthenticatedUser authenticatedUser) > > throws GuacamoleException { > > // No associated data whatsoever > >return null; >

Re: Change to the way of authenticating provided by Guacamole

2023-04-17 Thread Michael Jumper
Guacamole will poll every installed AuthenticationProvider. I can't speak to how your extension is written, but there are three phases that Guacamole goes through when you visit the application and attempt to authenticate: 1. Authentication: All installed extensions are asked to attempt to identif

Re: Problem with update from 1.4.0 to 1.5.0

2023-04-15 Thread Michael Jumper
The nightly rebuild job was still pointing at the 1.5.0 source. I've updated the build to point at 1.5.1 and triggered a manual rebuild. The "*:latest" tag in Docker should be corrected in a few minutes. - Mike On Sat, Apr 15, 2023 at 9:15 AM Alexandre Roumiantsev wrote: > > Hello > > If I use d

[ANNOUNCE] Apache Guacamole 1.5.1

2023-04-14 Thread Michael Jumper
The Apache Guacamole community is proud to announce the release of Apache Guacamole 1.5.1. Apache Guacamole is a clientless remote desktop gateway which supports standard protocols like VNC, RDP, and SSH. We call it "clientless" because no plugins or client software are required; once Guacamole is

Re: change Idle session timeout limit

2023-04-11 Thread Michael Jumper
None of the below properties relate to connection behavior, and you should *never* change "totp-mode" unless you know that your authenticator app supports the chosen value. Google Authenticator will silently ignore values it doesn't support, causing mismatches. Guacamole does not attempt to determ

Re: Change to the way of authenticating provided by Guacamole

2023-04-01 Thread Michael Jumper
On Sat, Apr 1, 2023, 12:21 AM Gabriel Huerta Araujo wrote: > I did what log told me to do: “*set "skip-if-unavailable: tacacs" within > your guacamole.properties”* > > > > And now when I enter to give my credentials, it works. But how can I do to > eliminate “The "tacacs" authentication provider

Re: SSO with Guacamole behind Reverse Proxy - Permission Denied for /api/session/data/saml/users

2023-03-30 Thread Michael Jumper
On Mon, Mar 27, 2023 at 1:31 PM Nick Ragsdale wrote: > Hey folks, > > Hope this is the right place and that this email finds you well. I've been > struggling for a fair bit with getting a POC up for Guacamole behind a > reverse proxy in our environment, to be integrated with Okta SSO. We are > le

Re: Failed to load "guac-common-svc"

2023-03-27 Thread Michael Jumper
On Mon, Mar 27, 2023 at 11:39 AM Justin VanAbrahams wrote: > This is embarrassing, but I just found a clue… > > > > Bypassing the apache2 reverse proxy cures this issue. Any guesses on what > config in apache2 might fix me up… > > It is absolutely impossible for a reverse proxy to have any effect

Re: DUO

2023-03-24 Thread Michael Jumper
On Fri, Mar 24, 2023, 10:44 PM Sean Hulbert wrote: > Hello, > > > > When configuring the DUO hardware key, do I keep the > guacamole-auth-totp-1.4.0.jar with Duo or is it just > guacamole-auth-duo-1.4.0.jar needed? > The Duo extension does not need the TOTP extension to function. They are indepe

Re: Blank White Screen & Internal Server Error

2023-03-24 Thread Michael Jumper
On Fri, Mar 24, 2023, 8:24 PM got kube wrote: > Hi there! I've been struggling to get my Guacamole install working all > week; I'm hoping someone can help me out here. > > I built guacd from source; pulled from github. I tried building the > 'release' but ran into compilation/syntax issues on my

Re: Guacamole - Local printer

2023-03-24 Thread Michael Jumper
On Fri, Mar 24, 2023 at 3:14 PM wrote: > Hello, > > After much research, I assume that it is not possible to print directly > from Guacamole to a local printer via an RDP connection. > > However, could you tell me if workarounds are possible ? For example > plugins or other? > > Currently, I have

Re: Recordings issue on 1.5.0 and SAML Question

2023-03-24 Thread Michael Jumper
On Fri, Mar 24, 2023 at 3:02 PM Michael Hess wrote: > First, can I pass a saml attribute like we can with ldap_{attribute} in > some way? I need to pass the Azure onpremisessamaccountname attribute as > the username, so LDAP groups work with SAML accounts vs having the full > email as the usernam

Re: Set auto creation Users default permissions

2023-03-19 Thread Michael Jumper
On Sun, Mar 19, 2023 at 7:23 PM khmadhu wrote: > Hi, > > Can we assign default permissions to the new user that was created by the > auto creation method? > How are users authenticated in your case? If there is no such feature, how can we do it?. > If you are using an SSO mechanism that suppor

Re: guacamole redirection is failing after integrating with keycloak

2023-03-15 Thread Michael Jumper
On Tue, Mar 14, 2023 at 10:46 PM Venkata Reddy < k.venkatanarayanare...@gmail.com> wrote: > Hi Team, > > We are integrating guacamole 1.4.0 with keycloak by using the below OPENID > attributes. > ... > Please don't double-post. To anyone finding this in the archives, the original thread is here:

Re: Guacamole direction is failing after integrating with keycloak

2023-03-15 Thread Michael Jumper
On Tue, Mar 14, 2023 at 10:30 AM Venkata Reddy < k.venkatanarayanare...@gmail.com> wrote: > > Hi Team, >> > >> We are integrating guacamole 1.4.0 with keycloak by using the below >> OPENID attributes. >> >> OPENID_AUTHORIZATION_ENDPOINT: " >> https://authenticate.id-proxy.rp.de.1u1.local:8443/re

Re: Change to the way of authenticating provided by Guacamole

2023-03-13 Thread Michael Jumper
What do you mean by "the [authentication] proposed by the Guacamole solution" and "the authentication process ... used by the organization"? - Mike On Mon, Mar 13, 2023, 10:17 AM Gabriel Huerta Araujo wrote: > Hi all > > > > I have a request > > Which components (java, js, html files) should I

Re: RDP connection failed with Guacamole 1.3.0

2023-03-10 Thread Michael Jumper
sktop Service) > UmRdpService(Remote Desktop Services UserMode Port Redirector) > SessionEnv(Remote Desktop Configuration) > RasMan(Remote Desktop Connection Manager) > TermServLicensing(Remote Desktop Licensing) > Tssdis(Remote Desktop Connection Broker) > TScPubRPC(RemoteApp and De

Re: RDP connection failed with Guacamole 1.3.0

2023-03-09 Thread Michael Jumper
Can you provide the guacd logs? - Mike On Thu, Mar 9, 2023, 11:51 PM Ken wrote: > Hello. > > I tried to make an RDP connection to Windows Server 2019 from a Guacamole > 1.3.0 environment built with Docker, but could not connect. > > This is what was logged when the connection could not be made.

Re: No visible recording in history record

2023-03-09 Thread Michael Jumper
On Mon, Mar 6, 2023, 6:20 AM Pavel Mlčoch wrote: > Extension has been installed and configured, records was recorded. Problem > must be on another place. > > [root@websrv2 extensions]# cat /etc/guacamole/guacamole.properties | grep > recording > recording-search-path: /recording > recording-path:

Re: httpTunnel is waiting for repsonse

2023-03-09 Thread Michael Jumper
On Thu, Mar 9, 2023, 6:33 AM Cedric Biedermann wrote: > Hi, > > I have the problem that an external user have to connect with his company > laptop to our guacamole server, and use a connection. His laptop seems to > be kind of secure and does not allow websockets, at least guacamole tries > to us

Re: Error connecting to RDP server

2023-03-09 Thread Michael Jumper
On Thu, Mar 9, 2023, 7:38 PM Kristoffer Panahon wrote: > Greetings, > > I'm a newbie trying to figure out why I can't get remote desktop to work. > I'm using the Guacamole that came with Dockstarter > . This is the image > it use

Re: HELP NEEDED: Cannot use the mariadb/mysql JDBC connector to enable DB Authentication.

2023-03-08 Thread Michael Jumper
On Wed, Mar 8, 2023 at 3:38 PM David Ramirez wrote: > Thanks a lot for the quick response to all! > Michael, that was indeed the problem. Once I downloaded the latest version > of the mysql_j client (as of March 8th, 2023 is version 8.0.32) I was able > to use the DB authentication. > I would lik

Re: Guacamole1.5.0 About the name of the PDF file that is downloaded after printing is executed

2023-03-08 Thread Michael Jumper
On Fri, Mar 3, 2023, 1:06 AM Ken wrote: > I am having trouble with the file names of the PDF files that are printed > and downloaded in the environment I have built Guacamole using Docker > Compose. > > The file that is printed and downloaded looks like "82A082A282A42E706466 > .pdf". > > The orig

Re: HELP NEEDED: Cannot use the mariadb/mysql JDBC connector to enable DB Authentication.

2023-03-08 Thread Michael Jumper
The issue you're encountering is due to the MariaDB driver dropping support for the "jdbc:mysql:" URI format unless additional parameters are included in the URI: https://mariadb.com/kb/en/about-mariadb-connector-j/#jdbcmysql-scheme-compatibility The above affects the MariaDB driver from 3.0 onwa

Re: Permission assigned via encrypted JSON is not stored in the database

2023-03-07 Thread Michael Jumper
On Mon, Mar 6, 2023 at 9:26 AM hantuo wrote: > Hi All, > > I’m working on setting up Guacamole single sign-on. In my organization, > user permission is maintained by a specific team. Therefore, I have to > implement middleware to acquire permission information from the team. > After that, I can a

Re: Purpose of ssh-agent

2023-03-06 Thread Michael Jumper
On Sun, Mar 5, 2023, 8:17 PM Mauricio Silveira wrote: > Hi. > > I know what ssh-agent does, but I'm not sure of what is the purpose of > the ssh-agent implementation in guacd... > > Before sending this e-mail, I tried "SSH Agent for Google Chrome" > extension, but it didn't work. > > > https://ch

Re: Dedicated Link for Guacamole login page available?

2023-03-04 Thread Michael Jumper
On Sat, Mar 4, 2023, 6:31 AM wrote: > Hi there, > i setuped SSO Extension (SAML) for Apache Guacamole with Microsoft > Active Directory Federation Service (AD FS) successfully. In the > configuration file i set the parameter "#extension-priority:" to "saml, > *". So all users are automataticlly r

Re: Guacamole 1.4.0 Error

2023-03-01 Thread Michael Jumper
The error you're seeing is occurring because Tomcat 10 switched from the "javax.*" package to "jakarta.*" for Java EE classes, which is incompatible with applications using the original package names. From https://tomcat.apache.org/download-10.cgi: "Users of Tomcat 10 onwards should be aware that,

Re: Guacamole 1.4.0 Error

2023-03-01 Thread Michael Jumper
What version of Tomcat are you using? - Mike On Wed, Mar 1, 2023, 1:01 PM Brian Snyder < brian.sny...@beavercreek.k12.oh.us> wrote: > Hello All, > > I am running into an error. Can someone point me in the right direction? > I am getting the "An error has occurred and this action cant be complete

Re: Guacamole 1.5 file upload missing tunnelId in the request URL

2023-02-26 Thread Michael Jumper
On Sun, Feb 26, 2023, 7:57 PM 陈鹏鹏 wrote: > Does this mean that file transfer is unavailable in guacamole 1.5.0, I see > the issue is fixed in version 1.6.0 > No. It means there is a random chance that file upload will not work as expected. IIRC, network speed can be a factor in how reproducible

Re: Guacamole 1.5 file upload missing tunnelId in the request URL

2023-02-26 Thread Michael Jumper
On Sun, Feb 26, 2023, 7:25 PM 陈鹏鹏 wrote: > Hi there, > > I encounter slow speed while transferring files through guacd. At the time > I investigate the root cause, guacamole 1.5.0 released, then I setup > guacamole 1.5.0 in a LAN environment, but failed to upload files, please > refer the attachm

Re: guacamole-auth-json & simultaneous independent connections

2023-02-22 Thread Michael Jumper
On Wed, Feb 22, 2023 at 2:17 PM Antoine G. wrote: > > Le 22/02/2023 à 20:37, Michael Jumper - mjum...@apache.org a écrit : > > No, you understood correctly. The error you're seeing is from the > > database auth extension refusing to create/update a user with an empty &g

Re: guacamole-auth-json & simultaneous independent connections

2023-02-22 Thread Michael Jumper
On Wed, Feb 22, 2023 at 8:07 AM Antoine G. wrote: > > On 22/02/2023 17:02, Nick Couchman - vn...@apache.org wrote: > > Yes, I think you need to provide a non-blank username. That's what the > > error indicates, anyway. > > Well I'm now confused :) > You suggested ealier to 'set the username to ""

Re: [ANNOUNCE] Apache Guacamole 1.5.0

2023-02-21 Thread Michael Jumper
On Tue, Feb 21, 2023 at 2:09 AM Joachim Lindenberg wrote: > > Hello all, > I tried to upgrade my docker compose scenario to 1.5, but the guacamole > container fails to start with error message "/opt/guacamole/bin/start.sh: > 1169: unzip: not found". This is a known issue with the "guacamole/gua

Re: ISSUE with RDP on Windows after upgrade from 1.4.0 to 1.5.0

2023-02-21 Thread Michael Jumper
On Tue, Feb 21, 2023, 12:22 AM Alessandro Sironi wrote: > Hello all, > > I'm having strange issues with RDP connection but only if I try to connect > to a Windows host, if I try to connect to a Linux host (xRDP) it works! > > Here from catalina.out: > What do you see in the guacd logs? > connect

Re: questions

2023-02-20 Thread Michael Jumper
On Mon, Feb 20, 2023, 1:34 PM Sean Hulbert wrote: > Hello, > > Have a couple of questions with Guacamole 1.4.0 > > 1. Is there a way to enforce password complexity at the web login. (MFA > enabled) > > https://guacamole.apache.org/doc/gug/jdbc-auth.html#enforcing-password-policies > We had a pe

Re: Building guacenc within Docker image on 1.5.0

2023-02-20 Thread Michael Jumper
On Mon, Feb 20, 2023, 12:48 PM Andrew Kilgore wrote: > Hi all, > > I'm trying to build guacenc as part of the Docker build of the guacd image > with the source for 1.5.0. Previously (prior to 1.5.0) this was achieved by > adding libavformat-dev as a build dependency in the Dockerfile. However, as

Re: Guacamole white-screening behind F5 SSL off-loading

2023-02-20 Thread Michael Jumper
2023, 12:07 PM Johnnie W Adams wrote: > Hi, Mike, > > If I can catch it doing this--it's an intermittent issue and it > hasn't caught me--I'll do so. I'm pretty sure our SSL termination isn't > injecting CSP rules. What else might I check? > > Thanks

Re: Guacamole white-screening behind F5 SSL off-loading

2023-02-20 Thread Michael Jumper
On Mon, Feb 20, 2023, 11:48 AM Johnnie W Adams wrote: > Hi, folks, > > We've got our instance of guacamole 1.4.0 behind an F5 i2600, which > does our SSL work for us. We don't have any interest in running SSL on the > application instance itself. We are occasionally getting the White Screen

Re: Docker 1.5.0 update

2023-02-20 Thread Michael Jumper
What do you see in your guacd logs for RDP (with debug-level logging)? On Mon, Feb 20, 2023, 10:11 AM Pablo wrote: > correct, I get the same error in my environment, RDP doesn't work, I can't > log to report. > > > El 20 feb. 2023, a la(s) 14:09, Michael Jumper > es

Re: 1.4.0 -> 1.5.0 history shows only Duration (docker)

2023-02-20 Thread Michael Jumper
Try clearing your browser cache. - Mike On Mon, Feb 20, 2023, 9:18 AM Timo Nisula wrote: > Hello, > > > > Just upgraded my docker guacamole and guacd from 1.4.0 to 1.5.0 and > everything looks like working except History tab. > > History tab shows only Duration nothing else. Here is my History

Re: Docker 1.5.0 update

2023-02-20 Thread Michael Jumper
On Mon, Feb 20, 2023 at 6:02 AM Nick Couchman wrote: > > On Mon, Feb 20, 2023 at 8:43 AM Pablo > wrote: > > > > Hello > > guacamole 1.5.0 and guacd 1.5.0 docker does not work for me vnc only with > > ssh, guacamole 1.5.0 and guacd 1.4.0 works perfect. > > What can be ? > > You need to provide m

Re: Apache Guacamole 1.5.0 docker image

2023-02-19 Thread Michael Jumper
Tomcat has multiple series of releases. The Docker images use the 8.5.x series. On Sun, Feb 19, 2023, 6:13 PM Sean Hulbert wrote: > Thought Tomcat at 9.3.72 > > > > Sent by Android Ai hijacked INS communications 6G > > > Original message ---- > From: Mich

Re: Apache Guacamole 1.5.0 docker image

2023-02-19 Thread Michael Jumper
On Sun, Feb 19, 2023, 2:48 PM Luis Cascales wrote: > Hi, > > With this latest release of Guacamole, the docker image will be running > with Tomcat 8 still? > The images use the latest version of Tomcat 8.5.x and are rebuilt nightly. > Also, to test the LDAP and AD functionality, do I need to

[ANNOUNCE] Apache Guacamole 1.5.0

2023-02-19 Thread Michael Jumper
The Apache Guacamole community is proud to announce the release of Apache Guacamole 1.5.0. Apache Guacamole is a clientless remote desktop gateway which supports standard protocols like VNC, RDP, and SSH. We call it "clientless" because no plugins or client software are required; once Guacamole is

Re: guacamole-auth-json & simultaneous independent connections

2023-02-13 Thread Michael Jumper
No, but if you want that behaviour, you should set the username to "" (empty string), which represents an anonymous user. The tokens for anonymous users are stored only in memory, not in LocalStorage. - Mike On Mon, Feb 13, 2023, 6:08 AM Toine wrote: > Dear Guacamole ML, > > I'm regularly using

Re: Guacamole installation failure

2023-02-12 Thread Michael Jumper
You don't usually need to build guacamole-client from source, as pre-built artifacts are provided: https://guacamole.apache.org/releases/1.4.0/ If you want to build from source instead, I'm not sure what might be preventing the JS unit testing framework from starting on your system, but you can s

Re: Trouble downloading files via RDP

2023-02-10 Thread Michael Jumper
On Fri, Feb 10, 2023, 12:50 AM Christopher Klinge wrote: > ... > > Downloading however does not appear to work reliably at all. It starts > with me being unable to move files into the "Download" directory on the VM. > To the user it looks like nothing is happening at all. The same behaviour > can

Re: guacd 1.4 backwards client compatibility

2023-02-09 Thread Michael Jumper
Our release notes always describe whether there are any changes that may affect compatibility: https://guacamole.apache.org/releases/ You will need to check the release notes for the versions that follow the release you're using to see whether any changes might affect you. Since you are way back

Re: Guacamole RDP shared connection load

2023-02-09 Thread Michael Jumper
Did anyone on the connection have a very slow network connection? The server may have needed to reduce its responsiveness to avoid streaming far more data than that user would be able to receive and process in the same amount of time it took the server to generate that data. Network latency should

Re: Error with only some servers

2023-02-07 Thread Michael Jumper
On Tue, Feb 7, 2023, 4:21 PM Brendan wrote: > OpenSSH_8.9p1 Ubuntu-3ubuntu0.1, OpenSSL 3.0.2 15 Mar 2022 > > > On Wed, 8 Feb 2023, at 10:18, Michael Jumper wrote: > > What version of OpenSSH is on the destination machine? > > On Tue, Feb 7, 2023, 4:18 PM Brendan wrote: &g

Re: Error with only some servers

2023-02-07 Thread Michael Jumper
> Brendan. > > On Wed, 8 Feb 2023, at 10:14, Michael Jumper wrote: > > What kind of private key is this? > > On Tue, Feb 7, 2023, 3:59 PM Brendan wrote: > > > Hi > > I've got one last problem. One of my servers still isn't connecting, > despite checki

Re: Error with only some servers

2023-02-07 Thread Michael Jumper
.run(GuacamoleWebSocketTunnelEndpoint.java:253) > guacd[251]: INFO: Connection "$b8f61fb7-71a4-4ab2-80f1-b69fd11beda2" > removed. > > On Wed, 8 Feb 2023, at 09:47, Brendan wrote: > > aha. Yes, i filled in the proxy details, not the proper part. > > Thanks for y

Re: Error with only some servers

2023-02-07 Thread Michael Jumper
servers work fine. > > Regards > Brendan. > > On Wed, 8 Feb 2023, at 02:48, Michael Jumper wrote: > > On Tue, Feb 7, 2023, 1:24 AM Brendan wrote: > > > Hello > > I am having a problem whereby a couple of my servers won't connect in > guac. It says in the w

Re: Error with only some servers

2023-02-07 Thread Michael Jumper
On Tue, Feb 7, 2023, 1:24 AM Brendan wrote: > Hello > > I am having a problem whereby a couple of my servers won't connect in > guac. It says in the web client "An error has occurred with the guacamole > server". I ran docker logs guacamole and this is the error i get: > > 11:20:29.290 [http-nio-

Re: Implementing client to use resizing-method display-update

2023-02-06 Thread Michael Jumper
On Sun, Feb 5, 2023, 6:28 AM Bbiswabasu Roy wrote: > I have set the property "resize-method" to "display-update" on the Java > server > There is no "resize-method" property. There is a "resize-method" connection parameter that you would set for the specific connection. and on the client side, .

Re: clone a connection

2023-02-06 Thread Michael Jumper
On Mon, Feb 6, 2023, 8:11 AM Vieri wrote: > Hi, > > I set up Guacamole to authenticate with SAML SSO (local Postgresql DB). I > added some provisioned users the right to create connections. > They can create just fine a new connection. However, cloning one and then > pressing the Save button lead

Re: Tomcat 10

2023-01-31 Thread Michael Jumper
On Tue, Jan 31, 2023 at 4:26 PM Sean Hulbert wrote: > Hello Nick > > Yes that should work just fine, however is there a upgrade document on > what needs to go where, > We do not have a document covering how to upgrade Tomcat. The vendor that provided your copy of Tomcat should be able to help w

Re: SAML Groups with Azure

2023-01-31 Thread Michael Jumper
On Tue, Jan 31, 2023 at 10:39 AM Michael Hess wrote: > I have the default saml-group-attribute set to "groups" and in Azure I > have the Claim name of > http://schemas.microsoft.com/ws/2008/06/identity/claims/groups set to > value: user.groups [All], all default stuff. > > I don't get any mapping

Re: Help with Upgrade Tomcat in Guacamole CVE-2022-29885

2023-01-25 Thread Michael Jumper
On Wed, Jan 25, 2023, 3:04 PM Nein, Wade, OSE wrote: > Hello, > > > > I recently had a pentest of my network done. One finding is the version > of tomcat Guacamole is using needs to be updated to resolve issues with > CVE-2022-29885. > > > > I am unsure where the tomcat resides and how to update

Re: Turning on File Transfer Breaks RDP

2023-01-24 Thread Michael Jumper
ate last week so > it should've grabbed the latest version. > > On Tue, Jan 24, 2023 at 3:16 PM Michael Jumper wrote: > >> On Tue, Jan 24, 2023 at 12:04 PM Dylan Francis < >> dylanfrancish...@gmail.com> wrote: >> >>> *Stack Trace:* >>> >&

Re: Turning on File Transfer Breaks RDP

2023-01-24 Thread Michael Jumper
On Tue, Jan 24, 2023 at 12:04 PM Dylan Francis wrote: > *Stack Trace:* > > #0 0x7fbfa80b78eb in __GI_raise (sig=sig@entry=6) > at ../sysdeps/unix/sysv/linux/raise.c:50 > #1 0x7fbfa80a2535 in __GI_abort () at abort.c:79 > #2 0x7fbfa80f9648 in __libc_message > (action=action@

Re: guacamole-common-js stream not initialized

2023-01-18 Thread Michael Jumper
On Wed, Jan 11, 2023 at 10:32 PM 陈鹏鹏 wrote: > Hi there, > > I’m developing web app based on guacamole v1.4.0, bellow is the detail > info: > > - guacd v1.4 running in docker > - backend endpoint with guacamole-common 1.4 > - frontend with guacamole-common-js 1.4 and write with vue > > When I con

Re: Character issues with SSH sessions

2023-01-17 Thread Michael Jumper
On Tue, Jan 17, 2023, 11:44 AM Kevin Cameron wrote: > I have a Guacamole instance which is working fine for RDP sessions but I > want to add an SSH connection and I am having issues with some characters > not displaying correctly: > [image: image.png] > I have tried different terminal types and s

Re: Tomcat version to use with Guacamole 1.4.0

2023-01-17 Thread Michael Jumper
On Tue, Jan 17, 2023, 1:01 AM Luis Cascales wrote: > Hi, > > Currently I have Guacamole 1.3.0 running with Tomcat 8.5, but as 1.4.0 is > compatible with earlier versions (1.x) I loaded 1.4.0 war binary and > deployed it, and it ran without issues. > Is it recommended that I should use latest Tomc

Re: [*EXT*] auth-openid (1.4.0) not working with latest Keycloak server

2023-01-16 Thread Michael Jumper
The "Non 200 status code (403 Forbidden) returned from https://id.xxx.com/realms/master/protocol/openid-connect/certs"; portion of the error suggests to me that there is something wrong with the JWKS endpoint URL. It doesn't appear that the OpenID support is doing anything wrong, but rather tha

Re: Can't work with alt keys on Apache Guacamole 1.4.0 RDP session (from macbook)

2023-01-15 Thread Michael Jumper
On Sun, Jan 15, 2023, 2:11 PM Luis Cascales wrote: > Hi there, > > I am testing Apache Guacamole 1.4.0 for ssh and rdp sessions in a customer > environment, there is an issue when using RDP to a Windows host, where the > alt keys won't work for some special characters when we try to insert the >

Re: guacamole cannot use yum-version of mariadb-java-client under RockyLinux9 (but 8 is fine)

2023-01-15 Thread Michael Jumper
On Sun, Jan 15, 2023, 1:04 PM Jason Haar wrote: > ... > Error querying database. Cause: java.sql.SQLException: No suitable driver > found for jdbc:mysql://127.0.0.1:3306/guacamole > ... > After messing around for some time I thought to try > replacing mariadb-java-client.jar file with the RockyL

Re: Printing job with non-ASCII name thru nginx

2023-01-05 Thread Michael Jumper
On Thu, Jan 5, 2023 at 3:13 PM Евгений Н. Жуков wrote: > Hi! Using 1.4 with nginx configured like > https://guacamole.apache.org/doc/gug/reverse-proxy.html > faced with issue printing when the job has Russian characters. The web > session stops working, catalina.out contain following error: > >

Re: Errors with Decprecated Functions and OpenSSL 3.0

2023-01-05 Thread Michael Jumper
This should already be addressed on the "master" branch in git via GUACAMOLE-745. See: https://issues.apache.org/jira/browse/GUACAMOLE-745 https://issues.apache.org/jira/browse/GUACAMOLE-1553 The code in question no longer exists as of GUACAMOLE-745. - Mike On Thu, Jan 5, 2023 at 2:01 PM Ryan

Re: Polish translation

2022-12-29 Thread Michael Jumper
Yes, just shoot an email over to priv...@guacamole.apache.org using the email that you want associated with the JIRA account, and we'll create it. If you have a preferred username, please include that in your email. - Mike On Thu, Dec 29, 2022, 9:44 AM Jakub Bocheński wrote: > Hello, > > I've

Re: HELP: Cannot paste anywhere inside guacamole

2022-12-28 Thread Michael Jumper
On Wed, Dec 28, 2022, 7:57 PM Nick Couchman wrote: > On Sat, Dec 17, 2022 at 6:02 AM Edoardo Fullin > wrote: > > > > Hello everyone, I've been encountering an odd issue lately. > > > > Namely, I cannot paste text from my clipboard into guacamole, and by > > that I don't mean inside remote sessio

Re: Race?

2022-12-23 Thread Michael Jumper
https://docs.docker.com/engine/reference/commandline/logs/ On Fri, Dec 23, 2022, 10:40 AM Joachim Lindenberg wrote: > Hello Mike, > > how exactly? Can this please be added to > https://guacamole.apache.org/doc/gug/guacamole-docker.html ? > > Thanks, > > Joachim >

Re: Race?

2022-12-23 Thread Michael Jumper
On Fri, Dec 23, 2022, 9:00 AM Joachim Lindenberg wrote: > ... Also because guacd trace does not have any timestamps and thus > correlation is difficult. > It's not guacd that would need to add timestamps but rather the logging backend (syslog or the systemd journal), which should already do so. F

Re: I seem to be misconfiguring guacamole (or apache virtual host for guacamole), can anyone help?

2022-12-22 Thread Michael Jumper
On Thu, Dec 22, 2022, 3:48 PM Dan Nessett wrote: > Thanks for the help. I have deleted the “hostname …” material from > guacamole.properties and deleted user-mapping.xml. I restarted both apache > and vncserver@1.service. I then attempted to connect to the VNC service, > but experienced similar r

Re: Race?

2022-12-22 Thread Michael Jumper
I don't think you're looking at a race condition. The only error shown is from WebSocket, and that only indicates that the connection was closed. Depending on timing, the socket can be closed just before a message is sent. It doesn't mean that anything is wrong or even that the closure itself is un

Re: I seem to be misconfiguring guacamole (or apache virtual host for guacamole), can anyone help?

2022-12-22 Thread Michael Jumper
On Thu, Dec 22, 2022 at 1:12 PM Dan Nessett wrote: > Now that I have apache configured properly, I am trying to get guacamole > to connect to a vnc server (tightvnc) running on the remote machine. Here > is the listen toplogy: > ... > This shows that tightvnc is listening on 5901, guacd is listen

Re: I seem to be misconfiguring guacamole (or apache virtual host for guacamole), can anyone help?

2022-12-19 Thread Michael Jumper
Try pointing your browser at ".../guacamole/" instead of ".../guacamole". It may be that Apache is sensitive to that trailing slash and you need a rewrite rule. - Mike On Mon, Dec 19, 2022 at 1:50 PM Dan Nessett wrote: > Changed to a FQDN: > > > ServerName server.mountolive.com >

Re: I seem to be misconfiguring guacamole (or apache virtual host for guacamole), can anyone help?

2022-12-19 Thread Michael Jumper
On Mon, Dec 19, 2022, 9:25 AM Dan Nessett wrote: > I am still trying to figure out why guacamole is not working. I looked at > the journalctl output, but found nothing suspicious (see below for startup > journal messages). When I look at the output of journalctl after attempting > to use guacamol

Re: I seem to be misconfiguring guacamole (or apache virtual host for guacamole), can anyone help?

2022-12-18 Thread Michael Jumper
rror log may have more > information. > Dec 18 17:33:38 Mount systemd[1]: apache2.service: Control process exited, > code=exited status=1 > Dec 18 17:33:38 Mount systemd[1]: apache2.service: Failed with result > 'exit-code'. > Dec 18 17:33:38 Mount systemd[1]: Failed to

Re: I seem to be misconfiguring guacamole (or apache virtual host for guacamole), can anyone help?

2022-12-18 Thread Michael Jumper
On Sun, Dec 18, 2022, 1:52 PM Dan Nessett wrote: > ... > > I tried to follow the instructions here: > https://guacamole.apache.org/doc/0.9.7/gug/proxying-guacamole.html#apache > You should always look at the current version of the manual unless you have a specific need to look at the version-spe

Re: Need help with guacamole.properties

2022-12-18 Thread Michael Jumper
On Sun, Dec 18, 2022 at 10:03 AM hantuo wrote: > Hi there, > > I'm Han-Tuo, a novice at Guacamole. I encountered a configuration issue > when I tried to set up Guacamole the other day. Any help would be > appreciated. > > I followed this tutorial to setup Guacamole: > https://kifarunix.com/instal

<    1   2   3   4   5   >