11
9

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 3 years have passed since last update.

DjangoでError: That port is already in use.が出たら

Posted at

完全に備忘録です。

ポートを解放したいとき

ps aux | grep -i manage

下記が表示される

ユーザ名      778   0.0  0.1  4349020   4252   ??  S    31May20   0:39.16 /System/Library/CoreServices/RemoteManagement/SSMenuAgent.app/Contents/MacOS/SSMenuAgent
ユーザ名      775   0.0  0.0  4333584   1012   ??  S    31May20   0:02.50 /System/Library/CoreServices/backgroundtaskmanagementagent
ユーザ名      771   0.0  0.0  4337392   1720   ??  S    31May20   0:24.40 /System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/MacOS/ARDAgent
ユーザ名    85298   0.0  0.0  4268040    788 s002  S+    9:15PM   0:00.00 grep -i manage

killしたいPIDを選択

kill -9 85298
11
9
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
11
9

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?