Running Apache on Linux suffering from this problem -
shmget: function not found
Any ideas?
It means that apache want to use SysV IPC. (semaphore get function)
IPC:
Inter process communication
These software objects (semaphores,shared memory and signals) enables the processes to exchange information.
Apache processes wants to exchange information via semaphores but could not,
You current Linux kernel dont have SystemV IPC support.
You should build a new Linux kernel with a SystemV IPC support.
You will have to rebuild the kernel with that support enabled (it's under the "General Setup" submenu)
I hope you can compile a new Linux kernel, if not this can help:
http://www.freeos.com/articles/2589/
293 views
Usually answered in minutes!
×