MongoDB Instale o Gerenciador de Operações de Teste Simples java.lang.OutOfMemoryError na inicialização

2

acabou de instalar uma avaliação de teste do MongoDB Ops Manager e recebeu um erro na inicialização do servidor HTTP de Backup:

Migrate MMS data
   Running migrations...[  OK  ]
Start MMS server
   Instance 0 starting..........[  OK  ]
Start Backup HTTP Server
   Instance 0 starting.......[FAILED]

2015-05-07T14:00:32.107+0000 [main] gid  ERROR ServerMain:199 - Cannot start bslurp server [FATAL-EXITING] - instance: 0  - msg: unable to create new native thread
java.lang.OutOfMemoryError: unable to create new native thread

Parece que tenho muita memória

[root@krh60621 ~]# free -m
             total       used       free     shared    buffers     cached
Mem:         15951       4588      11362          0        364       2021

e eu aumentoi os processos máximos para ilimitado para ver se isso ajudaria ....

[root@krh60621 ~]# ulimit -a
core file size          (blocks, -c) 0
data seg size           (kbytes, -d) unlimited
scheduling priority             (-e) 0
file size               (blocks, -f) unlimited
pending signals                 (-i) 127421
max locked memory       (kbytes, -l) 64
max memory size         (kbytes, -m) unlimited
open files                      (-n) 94000
pipe size            (512 bytes, -p) 8
POSIX message queues     (bytes, -q) 819200
real-time priority              (-r) 0
stack size              (kbytes, -s) 10240
cpu time               (seconds, -t) unlimited
max user processes              (-u) unlimited
virtual memory          (kbytes, -v) unlimited
file locks                      (-x) unlimited

[root@krh60621 ~]# ps -eLF| grep -c java
593

[root@krh60621 ~]# ps -eLF| wc -l
1031

Alguma opinião?

    
por Rich 11.05.2015 / 15:46

1 resposta

1

Eu tive o mesmo problema, esta exceção é muito enganosa. Você precisa alterar o ulimit na máquina linux para corrigir esse problema:

Você pode verificar os ulimits com:

ulimits -a 

e altere o limite com:

ulimit -n 64000    

E tente reiniciar o serviço com os novos limites.

Fonte: docs.MongoDB.org

    
por 12.11.2015 / 10:58

Tags