0

I have a micro instance of Ec2 with Django connected to apache via wsgi. Whenever I hit the server httpd hits top of the CPU and memory cycle and page consequently take some time to load.

Can someone help me tweak apache so that it does not consume a lot of memory?

user9517
  • 114,104
  • 20
  • 206
  • 289
Quintin Par
  • 4,293
  • 10
  • 46
  • 72

1 Answers1

2

Try removing unnecessary modules, for example if you don't need python or perl you can remove:

LoadModule python_module modules/mod_python.so
LoadModule perl_module modules/mod_perl.so

From the configuration files.

ghm1014
  • 944
  • 1
  • 5
  • 14