0
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

apache再起動手順

Last updated at Posted at 2021-09-14

#apache再起動手順

目的

初心者でもapacheサービスを再起動できる手順書であること。

前提

rootに変更する為のパスワードを把握できていること。

手順

1. rootユーザになる

以降の操作は全てrootユーザで行いますので、必ずrootに変わってください。

su -

2. パスワードの入力

パスワードの入力を求められるので入力する。

3. apacheのプロセスが実行中である事を確認する。

以下のコマンドを投入します。

ps -ef | grep httpd

以下の画像のように、「/usr/sbin/httpd」という表示が多数見られればOK。

01.apache-01.PNG

4. apacheのサービスが正常に起動している事を確認

以下のコマンドを投入します。

systemctl status httpd.service

以下のように、「Active: active (running)」という緑色の表記であればOK。

02.apache-02.PNG

5. サービスのステータス確認を終了

[ctrl]+[c]で抜ける。

6. apacheサービスを再起動

以下のコマンドを投入します。

systemctl restart httpd.service

コマンド投入後は何も起こらず、改行されたかのように、以下画像のように表示されていればOK。

03. apache-03.PNG

7. apacheのステータスを確認

4と同じコマンドを投入。

systemctl status httpd.service

以下のように、「Active: active (running)」という緑色の表記であればOK。

04.apache-04.PNG

8. サービスのステータス確認を終了

[ctrl]+[c]で抜ける。

以上です。

0
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?