Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- Kotlin
- IntelliJ
- table
- xPlatform
- R
- hadoop
- JavaScript
- react
- Android
- Spring
- Java
- Sqoop
- MSSQL
- SSL
- NPM
- mybatis
- mapreduce
- window
- vaadin
- SPC
- es6
- plugin
- Python
- Eclipse
- Express
- 보조정렬
- 공정능력
- SQL
- GIT
- tomcat
Archives
- Today
- Total
DBILITY
npm start Something is already running on port 3000. 본문
반응형
무언가를 하다 intellij를 종료하였던지 여하튼 npm start하니 다음과 같이 동일포트를 사용 중이라 나온다.
? Something is already running on port 3000.
Would you like to run the app on another port instead? » (Y/n)
node가 죽지 않은 모양이다. 또는 다른 프로세스가 있을 수도.
PS C:\Dev64\workspace\blog> ps -name node
Handles NPM(K) PM(K) WS(K) CPU(s) Id SI ProcessName
------- ------ ----- ----- ------ -- -- -----------
147 60 99916 109824 3.77 4768 1 node
PS C:\Dev64\workspace\blog> netstat -ano | findStr 3000
TCP 0.0.0.0:3000 0.0.0.0:0 LISTENING 4768
PS C:\Dev64\workspace\blog> taskkill /F /PID 4768
성공: 프로세스(PID 4768)가 종료되었습니다.
TCPView로 봐도 된다.
반응형
'front-end & ui > npm' 카테고리의 다른 글
npm webpack 기본 정리 (0) | 2023.03.16 |
---|---|
npm list extraneous (0) | 2022.01.07 |
npm package update (0) | 2021.12.24 |
nodemon security exception (0) | 2021.12.15 |
npm upgrade & package version check, npm init package.json generation (0) | 2021.12.13 |
Comments