惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

爱范儿
爱范儿
T
Troy Hunt's Blog
B
Blog
N
Netflix TechBlog - Medium
H
Help Net Security
PCI Perspectives
PCI Perspectives
罗磊的独立博客
SecWiki News
SecWiki News
S
Security Affairs
Webroot Blog
Webroot Blog
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO
Hacker News: Ask HN
Hacker News: Ask HN
Google Online Security Blog
Google Online Security Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
cs.CV updates on arXiv.org
cs.CV updates on arXiv.org
V
Visual Studio Blog
V2EX - 技术
V2EX - 技术
Recorded Future
Recorded Future
Schneier on Security
Schneier on Security
The Last Watchdog
The Last Watchdog
博客园 - 【当耐特】
Attack and Defense Labs
Attack and Defense Labs
S
Secure Thoughts
Hugging Face - Blog
Hugging Face - Blog
Forbes - Security
Forbes - Security
Application and Cybersecurity Blog
Application and Cybersecurity Blog
TaoSecurity Blog
TaoSecurity Blog
Recent Commits to openclaw:main
Recent Commits to openclaw:main
M
MIT News - Artificial intelligence
博客园_首页
A
About on SuperTechFans
Microsoft Azure Blog
Microsoft Azure Blog
T
Tailwind CSS Blog
The Cloudflare Blog
P
Proofpoint News Feed
D
DataBreaches.Net
N
News and Events Feed by Topic
G
Google Developers Blog
B
Blog RSS Feed
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
MyScale Blog
MyScale Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
AI
AI
O
OpenAI News
雷峰网
雷峰网
C
Check Point Blog
大猫的无限游戏
大猫的无限游戏
D
Darknet – Hacking Tools, Hacker News & Cyber Security
Blog — PlanetScale
Blog — PlanetScale
有赞技术团队
有赞技术团队

博客园 - 正怒月神

windows 安装 openclaw docker-compose 启动 elk linux mysql 备份 maven 打包时优先选择本地仓库 nginx 部署2个相同的vue minio 设置IP MapStruct-plus cannot find converter from jenkins pipeline 发布 jar并运行 MapperStruct 嵌套模型中 List<> 转 List<String> Easy es问题总结 Logstash docker发布 Docker 无法拉取 springmvc 多事务提交和回滚 springMvc 配置 UReport2 java 通过 microsoft graph 调用outlook(三) JPA Example 默认 join jackson.dataformat.xml 反序列化 对象中包含泛型 OR-TOOL 背包算法 java 通过 microsoft graph 调用outlook(二)
解决JIRA、Confluence自动注销登录的问题
正怒月神 · 2024-04-08 · via 博客园 - 正怒月神

转载:https://blog.csdn.net/qq_35002542/article/details/127691457

当工作从从JIRA里面打开confluence的链接时候,在回到JIRA时候,就自动退出了,还是需

要账号密码登录,很烦,于是研究如何解决。

百度了几十次,并没有什么卵用,于是从去看官方,在搜索了n个界面后,终于找到方法了。

原因:
        这个问题最常见的原因是在访问 JIRA、Confluence 或任何其他具有相同域或 IP 上的 Web 登

录的应用程序时,cookie 被覆盖。

        由于 cookie 不通过端口号区分,浏览器将覆盖以前的 cookie,并且看起来好像用户已从以前

的应用程序中注销。鉴于这是特定于浏览器的,它不会在应用程序日志中可见。、

        简单说就是同一台服务器部署了多个web应用。

解决方法:
配置 Tomcat,使其具有唯一的 sessionCookieName 以防止 JIRA 的会话覆盖 

1、修改jira的context.xml 文件
将sessionCookieName ="JIRASESSIONID"添加上

2、修改Confluence的context.xml 文件

 最后重启JIRA、confluence服务,浏览器测试发现问题解决了