일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- UNIX
- FreeBSD
- kernel
- bash
- OS 커널
- 커널
- Windows via c/c++
- DBMS 개발
- 포인터
- 한빛미디어
- 약어
- 컴퓨터 강좌
- newSQL
- SQLite
- Preprocessor
- 구조와 원리
- 전처리기
- go
- getopts
- TiKV
- 포인터변수
- Golang
- DBMS
- TiDB
- Programming
- UNIX Internals
- 긴옵션
- 함수포인터
- Pointer
- Symbol
- Today
- Total
sonumb
ssh 실행 시 X11 forwarding request failed on channel 0 에러 처리하기 본문
ssh -X userid@host로 접속해서, 콘솔창에 아래와 같은 메시지가 보인다면 X-window를 이용할 수 없다.
X11 forwarding request failed on channel 0
verbose 기능인 -v를 옵션을 추가해서 즉, ssh -v -X userid@host 를 실행한다면, 에러메시지를 자세하게 볼수 있다.
이때,
Remote: Can't get IP address for X11 DISPLAY
와 같은 메시지가 보인다면, 아래의 파일을 수정한 후, $ sudo service sshd restart 한다.
/etc/ssh/sshd_config
#AllowAgentForwarding yes
AllowTcpForwarding yes
#GatewayPorts no
X11Forwarding yes
X11DisplayOffset 10
#X11UseLocalhost no
#PermitTTY yes
PrintMotd no
PrintLastLog yes
TCPKeepAlive yes
#UseLogin no
UsePrivilegeSeparation sandbox # Default for new installations.
#PermitUserEnvironment no
#Compression delayed
#ClientAliveInterval 0
#ClientAliveCountMax 3
#ShowPatchLevel no
#UseDNS yes
#PidFile /var/run/sshd.pid
#MaxStartups 10:30:100
#PermitTunnel no
#ChrootDirectory none
#VersionAddendum none