From 0575c9f6b6e2be3dcca1eb5bce6fa972dd3cf104 Mon Sep 17 00:00:00 2001 From: Madhumita Subramaniam Date: Mon, 17 Apr 2023 15:23:49 +0530 Subject: [PATCH] fix(docs): session persistence #3235 (#4616) #3235 --- docs/admin/auth-server/session-management/README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/docs/admin/auth-server/session-management/README.md b/docs/admin/auth-server/session-management/README.md index 4c193d43d7e..3ff47d37ff2 100644 --- a/docs/admin/auth-server/session-management/README.md +++ b/docs/admin/auth-server/session-management/README.md @@ -73,6 +73,16 @@ session events, see: * [Application Session](../../developer/scripts/application-session.md) * [End Session](../../developer/scripts/end-session.md) + +## Session data structure in Persistence + +### LDAP +All sessions can be found under `ou=sessions,o=jans` +Object class `janssessid` - https://github.com/JanssenProject/jans/blob/main/docs/admin/reference/database/ldap-schema.md#janssessid + +### MySQL +All session information is saved in this table : https://github.com/JanssenProject/jans/blob/main/docs/admin/reference/database/mysql-schema.md#janssessid + ## FAQ ### How can we force the user to log out if the user is idle on the RP for 4 hours?