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 | 31 |
Tags
- IntelliJ
- profile
- import
- GIT
- Eclipse
- web.xml
- Mac
- Quartz
- grep
- 네트워크
- 단축키
- find
- JavaScript
- vscode
- resource
- bash
- lsof
- Windows
- 줄바꿈 문자
- netsh
- context
- ssh
- port
- tomcat
- xargs
- Source
- VirtualBox
- maVen
- Windows 10
- plugin
Archives
- Today
- Total
develog
[macOS] ssh, client_loop: send disconnect: Broken pipe 본문
ssh 연결 후 장시간 동안 사용이 없을 때 연결이 끊기면서 오류 메시지가 발생
client_loop: send disconnect: Broken pipe
scp: Connection closed
일정 시간 간격으로 keepalive 신호를 보내도록 수정한다
# macOS 에서 수정한다
$ vi ~/.ssh/config
Host *
ServerAliveInterval 180 # 초
Comments