Outils pour utilisateurs

Outils du site


tech:notes_openstack_-_horizon_web_ui

Différences

Ci-dessous, les différences entre deux révisions de la page.

Lien vers cette vue comparative

Prochaine révision
Révision précédente
tech:notes_openstack_-_horizon_web_ui [2025/03/24 15:06] – créée - modification externe 127.0.0.1tech:notes_openstack_-_horizon_web_ui [2026/06/07 19:12] (Version actuelle) – modification externe 127.0.0.1
Ligne 1: Ligne 1:
 +<!DOCTYPE markdown>
 +{{tag>OpenStack}}
 +
 +# Notes OpenStack - Horizon Web UI
 +
 +
 +## Changer le délai de déconnexion
 +
 +Horizon session timeout
 +
 +Fichier
 +* /etc/openstack-dashboard/local_settings.py
 +* /opt/stack/horizon/openstack_dashboard/local/local_settings.py
 +
 +
 +`local_settings.py`
 +~~~python
 +# dashboard session timeout in seconds
 +SESSION_TIMEOUT = 3600
 +~~~
 +
 +~~~bash
 +systemctl restart httpd
 +~~~
 +
 +Voir aussi 
 +
 +
 +`/etc/keystone/keystone.conf`
 +~~~ini
 +[token]
 +expiration = 36000
 +~~~
 +
 +~~~bash
 +systemctl restart devstack@keystone.service
 +~~~
 +
 +Ou encore sous K8S
 +
 +~~~bash
 +kubectl -n openstack edit horizon
 +~~~
 +
 +~~~yaml
 +spec:
 +  conf:
 +    horizon:
 +      local_settings:
 +        config:
 +          horizon_session_timeout: 14400
 +~~~
 +
 +
  

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki