문제

During my daily job, I need to keep connecting to sever through SSH, and I usually got two different kinds of errors, the first one is "Broken Pipe" while the second one is "Connection reset by peer".

I'm wondering what's the difference between these two set of errors?

도움이 되었습니까?

해결책

There isn't one really. Both indicate that the connection is broken. 'Broken pipe' is a Unix thing, doesn't happen on Windows as far as I know, and possibly it only occurs on write, where 'connection reset' can occur on both read and write.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top