页面树结构

版本比较

标识

  • 该行被添加。
  • 该行被删除。
  • 格式已经改变。

使用ARM Cpu+Kylin

...

Linux,启动propertycenter组件时,偶发碰到如下错误:

代码块
There is insufficient memory for the Java Runtime Environmentcontinue
Cannot create worker Gc thread. Out of system resources.

Image Modified

原因是安全策略限制了线程的创建。需要修改docker-compose.xml,增加配置项:

代码块
    security_opt:
      - seccomp=unconfined  # 禁用seccomp限制

Image Added