From 857eb0508bb7ffe49eb1974f343e4415ef1e7b6d Mon Sep 17 00:00:00 2001 From: Managor <42655600+Managor@users.noreply.github.com> Date: Fri, 7 Mar 2025 08:58:07 +0200 Subject: [PATCH] apachectl: add page (#15844) --- pages/linux/apachectl.md | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 pages/linux/apachectl.md diff --git a/pages/linux/apachectl.md b/pages/linux/apachectl.md new file mode 100644 index 0000000000..bcc59f166e --- /dev/null +++ b/pages/linux/apachectl.md @@ -0,0 +1,32 @@ +# apachectl + +> Control an Apache HTTP server. +> More information: . + +- Start the server: + +`sudo apachectl start` + +- Restart the server: + +`sudo apachectl restart` + +- Stop the server: + +`sudo apachectl stop` + +- Test configuration file validity: + +`apachectl configtest` + +- Check server status (requires the lynx browser): + +`apachectl status` + +- Reload configuration without dropping connections: + +`sudo apachectl graceful` + +- Print full Apache configuration: + +`apachectl -S`