centos 6.5 minimal version 에서 아래와 같이 X11 포워딩이 안되는 문제가 발생.
WARNING! The remote SSH server rejected X11 forwarding request.
sshd_config 화일에서, x11 forwarding을 허용하도록 설정이 되어 있다.
# cat /etc/ssh/sshd_config | grep -i x11 #X11Forwarding no X11Forwarding yes #X11DisplayOffset 10 #X11UseLocalhost yes # X11Forwarding no
확인 결과 xorg-x11-xauth, xorg-x11-fonts-*, xorg-x11-utils 패키지가 필수라고 한다. 이들 필수 패키지를 설치한다.
# yum install xorg-x11-xauth xorg-x11-fonts-* xorg-x11-utils
이후, desktop 실행하면 잘 된다.
—
CentOS 7 minimal 에서 위의 패키지 설치후 아래 오류 발생할 경우
X11 forwarding request failed on channel 0
xauth 패키지를 설치하면 됨.
# yum install xauth