如何在 WebSphere 8.5 上安装 Jenkins
How to install Jenkins on WebSphere 8.5
我正在尝试按照 wiki 中的描述安装 jenkins(1.627),尽管我遇到了这个错误。
无法加载 webapp:SRVE8111E:应用程序 jenkins_war 正在尝试修改与受限编程会话 cookie 列表 [domain=*, name=JSESSIONID, path=/ ]
有什么解决办法吗?
Jenkins 应用试图以某种方式修改 JSESSIONID cookie 设置。尝试在 Security > Global Security > Programmatic session cookie configuration
中删除匹配行 ([domain=*, name=JSESSIONID, path=/]
)。我没有测试过,所以可能行不通。
事实上,我只是更改了 cookie 名称:
Websphere Application Servers -> session management -> enable cookies
-> Cookie Name
改成别的名字(我设置成JSESSIONID_jenkins),成功了。
我正在尝试按照 wiki 中的描述安装 jenkins(1.627),尽管我遇到了这个错误。
无法加载 webapp:SRVE8111E:应用程序 jenkins_war 正在尝试修改与受限编程会话 cookie 列表 [domain=*, name=JSESSIONID, path=/ ]
有什么解决办法吗?
Jenkins 应用试图以某种方式修改 JSESSIONID cookie 设置。尝试在 Security > Global Security > Programmatic session cookie configuration
中删除匹配行 ([domain=*, name=JSESSIONID, path=/]
)。我没有测试过,所以可能行不通。
事实上,我只是更改了 cookie 名称:
Websphere Application Servers -> session management -> enable cookies
-> Cookie Name
改成别的名字(我设置成JSESSIONID_jenkins),成功了。