LoginSignup
42
47

More than 5 years have passed since last update.

php artisan serveを停止させる方法

Posted at

基本

Control + c

でストップする

もし終了せずにターミナルを閉じてしまった時

$ ps 

でプロセスを見る

  PID TTY           TIME CMD
  358 ttys000    0:00.03 -bash
 1734 ttys002    0:00.22 /bin/bash -l
 1900 ttys002    0:00.38 php artisan serve
 1904 ttys002    0:00.09 /usr/bin/php -S 127.0.0.1:8000 /Users/teogi/works/test-laravel/server.php
 1906 ttys003    0:00.02 /bin/bash -l
 1720 ttys005    0:00.02 /bin/bash -l

該当するプロセスをkillする

kill -9 1904

-9 は強制終了オプション

すると、プロセスがkillされる

  PID TTY           TIME CMD
  358 ttys000    0:00.03 -bash
 1734 ttys002    0:00.22 /bin/bash -l
 1906 ttys003    0:00.03 /bin/bash -l
 1720 ttys005    0:00.02 /bin/bash -l
42
47
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
42
47