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
- css:position
- Event
- textContent
- javascript
- HTML
- for loop
- keyup
- UI
- Dom
- node
- yet
- react
- modal
- Review
- keyboardEvent
- js
- addEventListener
- a11y
- innerText
- node.js
- Empty
- dotenv
- innerHTML
- nodeValue
- TypingEffect
- es6
- beforeinput
- Temporal dead zone
- ES5
- CSS
Archives
- Today
- Total
the murmurous sea
How to kill a port 본문
To find the process ID, try:
sudo lsof -i :portNumber |
Kill the process which is currently using the port using its PID
kill PID |
and then check to see if the port closed. If not, try:
kill -9 PID |
I would only do the following if the previous didnt work
sudo kill -9 PID |
@
stackoverflow.com/questions/12397175/how-do-i-close-an-open-port-from-the-terminal-on-the-mac
'#dev > 개념정리' 카테고리의 다른 글
React state vs. Redux state (0) | 2021.05.26 |
---|---|
app.get() vs. router.get() (0) | 2021.04.15 |
UX/UI: Branding (0) | 2021.01.26 |
UX/UI: what makes good web design (0) | 2021.01.23 |
UI: Responsive layout grid (0) | 2020.10.28 |
Comments