ウェブサーバーコマンド - Linux

リスト

Apache

Apache のインストール

AlamLinux

sudo dnf install httpd

Ubuntu

sudo apt install apache2

Apache の起動

AlamLinux

sudo systemctl start httpd

Ubuntu

sudo systemctl start apache2

Apache の再起動

AlamLinux

sudo systemctl restart httpd

Ubuntu

sudo systemctl enable apache2

Apache の状態の確認

AlamLinux

sudo systemctl status httpd

Ubuntu

sudo systemctl status apache2

Apache の自動起動の有効化

AlamLinux

sudo systemctl enable httpd

Ubuntu

sudo systemctl enable apache2

Apache の設定ファイル

AlamLinux

/etc/httpd/conf/httpd.conf

Ubuntu

/etc/apache2/apache2.conf

Apache のシンタックスチェック

AlamLinux Ubuntu

apachectl configtest