📜  重启 apache ubuntu - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:50:43.301000             🧑  作者: Mango

代码示例6
# Restart apche 2 server.
sudo service apache2 restart 
or
sudo systemctl restart apache2


# Gracefully reloading is a bit faster, and there's no downtime
sudo service apache2 reload