14
6

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

React Nativeの環境構築でつまずいた話:Error: listen EADDRINUSE

Posted at

エラー内容

React Nativeの環境構築をしている際、iOS起動時にエラーが出てしまいました。

スクリーンショット 2019-08-12 23.40.59.png

解決

①どうやら、node.jsを起動しないと行けない模様なので、ターミナルで起動して見ることに。

npm start

すると,,,エラーが

error listen EADDRINUSE: address already in use :::8081. Run CLI with --verbose flag for more details.
Error: listen EADDRINUSE: address already in use :::8081

②次は、ポートが衝突してるってことで、一度使用しているポート8081を消去してから、再度立ち上げることに

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

//消去
kill -9 PID

結果

もう一度、iOSでrunしてみると、、

スクリーンショット 2019-08-13 0.22.26.png

成功!!!!!

14
6
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
14
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?