Postgres - não foi possível criar o segmento de memória compartilhada: argumento inválido

4

Shmmax, Shmall, não consigo vencer;)

Eu tentei mudar o arquivo /etc/sysctl.d/30-postgresql-shm.conf ao invés de remover o kernel.shmmax e kernel.shmall , mas não pareceu ajudar.

#/etc/sysctl.d/30-postgresql-shm.conf 
# Shared memory settings for PostgreSQL

# Note that if another program uses shared memory as well, you will have to
# coordinate the size settings between the two.

# Maximum size of shared memory segment in bytes
#kernel.shmmax = 33554432  # Original
#kernel.shmmax = 41943040  # Tried this (bigger)
kernel.shmmax = 943040  # and this (smaller)

# Maximum total size of shared memory in pages (normally 4096 bytes)
#kernel.shmall = 2097152  # Tried with and without this commented out

Então (o erro):

$ sudo /etc/init.d/postgresql start
* Starting PostgreSQL 9.2 database server    
* The PostgreSQL server failed to start. Please check the log output:
2013-04-27 16:21:33 EDT FATAL:  could not create shared memory segment: Invalid argument
2013-04-27 16:21:33 EDT DETAIL:  Failed system call was shmget(key=5432001, size=30490624, 03600).
2013-04-27 16:21:33 EDT HINT:  
This error usually means that PostgreSQL's request for a shared memory segment  exceeded your kernel's SHMMAX parameter.  
You can either reduce the request size or reconfigure the kernel with larger SHMMAX.  
To reduce the request size (currently 30490624 bytes), reduce PostgreSQL's shared memory usage, 
perhaps by reducing shared_buffers or max_connections.
If the request size is already small, it's possible that it is less than your kernel's SHMMIN parameter,  
in which case raising the request size or reconfiguring SHMMIN is called for.
The PostgreSQL documentation contains more information about shared memory configuration.

Observação: como eu aumentaria o tamanho da solicitação, já que essa é a única coisa que eu não tentei listar.

    
por Michael Durrant 27.04.2013 / 22:27

3 respostas

4

Bom, depois de experimentar um pouco, achei mudar o /etc/sysctl.conf para ter o kernel.shmmax = 89934592 (dois dígitos menor do que o kernel.shmmax original = 8589934592) só por diversão ... funcionou!

* Starting PostgreSQL 9.2 database server [ OK ] durrantm$
    
por Michael Durrant 28.04.2013 / 15:11
1

Uma solução ligeiramente melhor:

  1. Para evitar a sobregravação de valores em uma atualização do sistema, crie um arquivo em /etc/sysctl.d/[filename].conf
  2. Defina kernel.shmmax = [size of error + 1000] . Ex 30490624 + 1000
  3. Recarregue sysctl com

    sysctl --system
    
  4. Verifique o novo valor com:

    sysctl kernel.shmmax
    
por Pablo Veintimilla 28.11.2016 / 04:53
0

Para isso, a solução é que precisamos aumentar o valor de SHMALL ou diminuir o valor de buffers compartilhados

    
por pavan 16.06.2017 / 12:50

Tags