Without fastcgi - Printable Version +- ispCP - Board - Support (http://www.isp-control.net/forum) +-- Forum: ispCP Omega Development Area (/forum-1.html) +--- Forum: Suggestions (/forum-2.html) +--- Thread: Without fastcgi (/thread-533.html) |
Without fastcgi - Z4P - 05-12-2007 08:37 AM Hey, I have some problems with my ram because of the fastcgi module. Mayby there is a replacement for this module, or make a option to install it or not. Becaue with that fastcgi you need a minium of 256 MB Ram, and (in my opinion) that is alot for control panel with no websites running on it. Sincerly, Z4P. RE: Without fastcgi - ephigenie - 05-12-2007 08:45 AM you can reconfigure you webserver as apache2-mpm-prefork with mod_php4/5 but keep in mind that you're throwing away a lot of the security fastcgi/suexec brings with it. And btw. perhaps you should run "top" and see how much ram your mysql i.e. eats up. A mysql with < 64M dedicated to it is running slow without a question ... Another option : Try to remove some unused php-modules so that the mem-footprint of your php is smaller than now. RE: Without fastcgi - Z4P - 05-12-2007 08:52 AM Which field in top indicates the memory? Code: PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND RE: Without fastcgi - ephigenie - 05-12-2007 09:11 AM can you give us a full screen of your top output ? RE: Without fastcgi - ephigenie - 05-12-2007 09:12 AM for now your mysql uses 123M of ram altogether - how much swap - space do you have ? RE: Without fastcgi - Z4P - 05-12-2007 05:59 PM WOA, i got 128MB, and 512 Burstable. Code: Cpu(s): 0.0% us, 0.0% sy, 0.0% ni, 100.0% id, 0.0% wa, 0.0% hi, 0.0% si Is there a way to lower the RAm needed by the MySQL server? RE: Without fastcgi - joximu - 05-12-2007 06:34 PM Well you could disable some DB engines (innoDB) if you don't need that. (in /etc/mysql/my.cnf there is a line skip-innodb - you can enable this line...) Maybe this will get you some "space" :-) RE: Without fastcgi - Z4P - 05-12-2007 06:37 PM Hmm not very much different: Code: top - 03:37:14 up 11:30, 2 users, load average: 0.00, 0.00, 0.00 RE: Without fastcgi - joximu - 05-12-2007 07:03 PM Well, you have to know: linux normally uses all memory which is available - becaus unused memory is wasted money... I'm a little bit irritated by "used: about 45MB" but you can use 128MB - maybe this is the special thing about virtual Servers... Maybe someone with more "virtual" knowledge can help to improve the the config. RE: Without fastcgi - El Rico - 05-12-2007 07:30 PM ephigenie Wrote:you can reconfigure you webserver as apache2-mpm-prefork with mod_php4/5 Is it just a matter of changing the apache2 config , or does one need to temper with ispCP itself? |