当前位置:网站首页>[confluence] JVM memory adjustment
[confluence] JVM memory adjustment
2022-07-07 19:37:00 【cindysz110】
background :Confluence 7.16.2 Data Center edition , The default installation is JVM Memory set to 1024M, When the number of simultaneous access users is large , The service is stuck , Journal JVM OutOfMemoryError.
Problem solving : modify Confluence The configuration file , increase JVM Memory .
step :
1) stop it Confluence service
[[email protected] ~]# cd /data/atlassian/confluence/bin
[[email protected] bin]# ./stop-confluence.sh2) modify Confluence The configuration file
[[email protected] bin]# vi /data/atlassian/confluence/bin/setenv.sh
modify CATALINA_OPTS="-Xms1024m -Xmx1024m ${CATALINA_OPTS}"
by CATALINA_OPTS="-Xms8g -Xmx8g ${CATALINA_OPTS}"explain :
- -Xms:Java Heap Maximum , The default is physical memory 1/4, The best setting depends on the size of the physical memory and other memory overhead in the computer
- -Xmx:Java Heap Initial value ,Server End JVM It is best to -Xms and -Xmx Set to the same value , Develop a test machine JVM You can keep the default value
3) start-up Confluence service
|
After the service starts successfully , You can log in with an administrator account , Get into General configuration - system information see JVM Whether the memory configuration is modified successfully .
边栏推荐
- Empowering smart power construction | Kirin Xin'an high availability cluster management system to ensure the continuity of users' key businesses
- 转置卷积理论解释(输入输出大小分析)
- R语言dplyr包mutate_at函数和min_rank函数计算dataframe中指定数据列的排序序号值、名次值、将最大值的rank值赋值为1
- 国内首次!这家中国企业的语言AI实力被公认全球No.2!仅次于谷歌
- SlashData开发者工具榜首等你而定!!!
- # 欢迎使用Markdown编辑器
- Redis master-slave and sentinel master-slave switchover are built step by step
- 让这个 CRMEB 单商户微信商城系统火起来,太好用了!
- LeetCode 497(C#)
- [mime notes]
猜你喜欢
随机推荐
J ü rgen schmidhub reviews the 25th anniversary of LSTM papers: long short term memory All computable metaverses. Hierarchical reinforcement learning (RL). Meta-RL. Abstractions in generative adversar
注解。。。
转置卷积理论解释(输入输出大小分析)
Draw squares with Obama (Lua)
“本真”是什么意思
Matplotlib drawing 3D graphics
手把手教姐姐写消息队列
UCloud是基础云计算服务提供商
The research group of the Hunan Organizing Committee of the 24th China Association for science and technology visited Kirin Xin'an
Borui data was selected in the 2022 love analysis - Panoramic report of it operation and maintenance manufacturers
网易云信参与中国信通院《实时音视频服务(RTC)基础能力要求及评估方法》标准编制...
[HDU] 5248 sequence transformation (greedy + dichotomy) [recommended collection]
Policy mode - unity
反爬虫的重点:识别爬虫
Download from MySQL official website: mysql8 for Linux X Version (Graphic explanation)
First time in China! The language AI strength of this Chinese enterprise is recognized as No.2 in the world! Second only to Google
Pasqal首席技术官:模拟量子计算率先为工业带来量子优势
Jerry's headphones with the same channel are not allowed to pair [article]
我的创作纪念日
Flipping game (enumeration)









