2

If I want to be sure that all python modules are recompiled and reloaded in my Django project under mod_wsgi and Apache, is it enough to restart apache gracefully with:

/etc/init.d/apache graceful

or should I always do the full restart with

/etc/init.d/apache restart

?

Aidas Bendoraitis
  • 1,465
  • 2
  • 14
  • 17

1 Answers1

0

Yes it should be as all processes are restarted.

See:

Graham Dumpleton
  • 6,090
  • 2
  • 21
  • 19