I've just installed APC to cache my PHP code on my Ubuntu VPS server. Using
sudo apt-get install php-apc
sudo /etc/init.d/apache2 restart
This worked fine. However, I encounter some problems increasing the chunk of RAM allocated to APC. If I run apc.php it gives me this information about the shared memory.
Shared Memory 1 Segment(s) with 30.0 MBytes (mmap memory, pthread mutex locking)
Even though I configured
apc.shm_segments 3
Not setting the default
apc.shm_size 30
In addition I've got the problem that as soon as I set apc.shm_size in apc.ini or php.ini apache hangs on restart/graceful and wont come up.
My questions:
1. If the memory allocated to APC is apc.shm_size * apc.shm_segments why can I only see 90M?
2. Has got anyone had the problem with the hanging Apache on setting of apc.shm_size? How would I fix that?
Many thanks!