Install php mcrypt module – Fedora Core 11
September 6th, 2009
No comments
Easy and fast, using chkconfig linux command.
To configure your system to start Apache at boot time:
chkconfig --levels 235 httpd on
for manual start apache:
/etc/init.d/httpd start
create the system startup links for Proftpd and start it:
chkconfig --levels 235 proftpd on
/etc/init.d/proftpd start
Chkconfig provides a ...
for this error:
[error] server reached MaxClients setting, consider rising the MaxClients setting
resolve:
open: httpd.conf (located in /etc/httpd/conf/)
search for MaxClients (usual under <IfModule worker.c> , prefork is more rare)
modify MaxClients from 150 to 300 !
<IfModule worker.c>
StartServers ...