Ubuntuサーバーでapacheの起動や再起動、停止するコマンドを記載します。

Ubuntuでapacheを起動するコマンド

Ubuntsuでapacheを起動する場合は下記を入力します。

sudo service apache2 start

Ubuntuでapacheを停止するコマンド

Ubuntsuでapacheを停止、STOPする場合は下記を入力します。

sudo service apache2 stop

Ubuntuでapacheを再起動するコマンド

Ubuntsuでapacheを再起動(リスタート)する場合は下記を入力します。

sudo service apache2 restart

または

sudo systemctl restart apache2

Apacheのモジュールのリストを表示するコマンド

インストールしたApacheのモジュールのリストを表示するコマンドは下記です。
apache2 -l