0
0

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.

yarn start時にポートが既に使われている場合の対処法

Posted at

ReactNativeでの開発をする際に、yarn startまたはnpm startで起動したら下記のエラーが出たので対処法を。
##エラー内容

.error listen EADDRINUSE: address already in use :::8081. Run CLI with --verbose flag for more details.・・・
これは起動時に使おうとしたポートがすでに使われているので競合して起動できないときに起こる問題です。

##解決法
起動したいポートのPIDを調べkillしてあげましょう。

//ポートのPIDを特定する
lsof -i :8081

//消去
kill -9 PID

または、使われていないポートを指定してstartさせるのでも解決できます。

0
0
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
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?