Ad Widget

Collapse

Can't find shared memory for database cache. [No such file or directory]

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • jcesario
    Member
    • Apr 2009
    • 65

    #1

    Can't find shared memory for database cache. [No such file or directory]

    Zabbix 1.6.8

    I have seen a lot of posts about this but no solution. Can anyone explain why this happening?
  • jcesario
    Member
    • Apr 2009
    • 65

    #2
    This is where i happens in dbxcache.c


    shm_id = shmget(shm_key, sz, 0);

    if (-1 == shm_id)
    {
    zabbix_log(LOG_LEVEL_ERR, "Can't find shared memory for database cache. [%s]",strerror(errno));
    exit(1);
    }

    Comment

    Working...