How to install Jenkins on WebSphere 8.5

I am trying to install jenkins (1.627) as described in the wiki , although I got this error.

Failed to load webapp: SRVE8111E: jenkins_war is trying to change the cookie that matches the pattern in the cookie list with a limited program session [domain = *, name = JSESSIONID, path = /]

Any ideas how to fix it?

+4
source share
2 answers

Actually, I just change the name of the cookie:

Websphere Application Servers -> session management -> enable cookies
-> Cookie Name

Changed it to a different name (I set JSESSIONID_jenkins) and it worked.

+1
source

- Jenkins cookie JSESSIONID. Security > Global Security > Programmatic session cookie configuration ([domain=*, name=JSESSIONID, path=/]). , .

+4

Source: https://habr.com/ru/post/1605723/


All Articles