I'll skip the part where I strongly advise you about the implications of having a web application starting and stopping system processes and try to answer the question.
Your django application shouldn't run with root user, which should probably be needed to start and stop services. You can probably overcome this by:
- creating a script that uses seteuid
- give that file the set uid attribute
The script would be something like
#!/usr/bin/python <- or wherever your python interpreter is
import os
os.seteuid(0)
os.system("service httpd restart 1>$HOME/out 2>$HOME/error")
To allow setting the effective UID to root (0), you have to run, in a shell, as root:
chown root yourscript.py
chmod u+s yourscript.py
chmod a+x yourscript.py
That should do it. In your Django app you can now call os.system('yourscript.py')
to run the command with root permissions.
Finally, I believe that the command you're passing to os.system()
isn't what you're looking for, since you talk about enabling and disabling daemons and all you're doing is restarting apache... which in turn seems to be where your django is running, so in practice you'll be killing your own webapp.