Skip to main content

Guacamole

Выключить TOTP для определённого пользователя

Внутри контейнера с postgres от guaca

su postgres
psql
\c guacamole_db
select * from guacamole_user_attribute;
update guacamole_user_attribute set attribute_value='totpdisabled' where user_id=<userid> and attribute_name='guac-totp-key-secret';

Решение взято тут

Шпаргалка postgre