How do I do a graceful restart of Apache httpd with systemd?
In the old model, to do a graceful restart of httpd (without breaking existing connections), I would do
sudo service httpd graceful
But in the new world of systemctl
, there's no such option. What should I do instead?
The command you are looking for is
[sudo] apachectl graceful
for another command, refer to http://fedoraproject.org/wiki/Systemd
I guess so. It sure was nice to have all of the control options in once place before rather than having to search for the appropriate control command for each program. Oh well.