I installed apc on my ubuntu 10.4 vps today using the following lines.
sudo apt-get install php-apc
sudo /etc/init.d/apache2 restart
While everything works fine. I encounter problems configuring APC. I try to increase the allocated memory size. To my understanding I could do this either by increasing the amount of segments apc.shm_segments or apc.shm_size.
If I configure apc.shm_segments and restart/graceful the server apc.php still shows only one segment. In the apache error log I can find the line:
PHP Warning: PHP Startup: apc.shm_segments setting ignored in MMAP mode in Unknown on line 0
How, would I make APC use apc.shm_segments?
Nevertheless, I'd prefer to use increase apc.shm_size to the 128M I configured as
kernel.shmmax = 134217728
However, everytime I configure apc.shm_size in /etc/php5/conf.d/apc.ini and restart/gracful apache. Apache does start but hangs. It does not serve any websites and a apache2ctl stop is not regarded anymore.
Has anyone experienced the same and/or knows why I can't change the shm_size default value?
Many thanks!
apc.shm_size = xxM, it doesn't matter which value even theapc.shm_size = 30Mwhich is I believe the default value Apache stops working normally. My /etc/php5/conf.d/apc.ini looks like ` extension=apc.so` ` ;apc.shm_segments = 3` ` ;apc.shm_size = 96M` As soon as I uncommentapc.shm_sizeand try to restart the apache it hangs.apc.shm_segmentsis ignored. thanks! – Novazembla Jul 17 '11 at 10:38