How to Change the Session Timeout Time in Jenkins

Asked 2 years ago, Updated 2 years ago, 109 views

Could you tell me how to change the session timeout period for Jenkins on ubuntu 16.04?

linux ubuntu unix jenkins

2022-09-29 22:53

1 Answers

Startup Parameters or

java-jar jenkins.war -- sessionTimeout=60

It seems that Jenkins web.xml can do it.

<session-config>
  <session-timeout>60</session-timeout>
</session-config>


2022-09-29 22:53

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.