I'm connected to a remote mac using ssh + terminal. I need to restart apache from terminal. How can I do that?

I am looking here http://httpd.apache.org/docs/2.2/stopping.html and tried:

apachectl -k graceful

but this command seems to not be found. How can I do it?

Thanks

link|improve this question

71% accept rate
feedback

2 Answers

up vote 3 down vote accepted

You might be able to use the init scripts. Try something like:

sudo /etc/init.d/httpd restart

or

sudo /etc/init.d/apache2 restart
link|improve this answer
feedback

How about apache2ctl?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.