On Thu, Jan 18, 2024 at 4:38 AM Morten Fahle <[email protected]>
wrote:

> Hi
> I have set up Guacamole 1.5.3 with recording and it’s working fine. But
> due to GDPR I have to delete recordings after a set time.
> Is there a way to set up Guacamole so it will delete the recording but not
> the session history automatically after a set number of days?
>
>
There's no way directly to do this in Guacamole, but it should be pretty
simple to manage on the system where guacd is running with a script and a
cron job. For example, to clean up after 7 days, you'd just need to run
something like:

find /var/lib/guacamole/recordings -type f -mtime +7 -exec rm -fv {} \;


> Also, sometimes we will need to store recordings for longer and would like
> to download the recording. Is there an easy way to connect a session
> history entry to the recording in /var/lib/guacamole/recordings?
>
>
Yes - there is an extension that connects the Guacamole Client interface
with the recordings:

https://guacamole.apache.org/doc/gug/recording-playback.html

-Nick

Reply via email to