반응형
# grep X11Forwarding /etc/ssh/sshd_config
X11Forwarding yes
# echo $DISPLAY
=> 변수에 들어있는 값이 없으므로 아무런 값도 출력되지 않음
SSH로 접속시 아래와 같은 에러 발생
Connection established.
To escape to local shell, press 'Ctrl+Alt+]'.
To escape to local shell, press 'Ctrl+Alt+]'.
WARNING! The remote SSH server rejected X11 forwarding request.
# firefox
Error: no display specified
해결방법
# vi /etc/profile
loginfrom=$(who am i | cut -f2 -d"(" | cut -f1 -d")")
DISPLAY=${loginfrom}:0.0
export DISPLAY
DISPLAY=${loginfrom}:0.0
export DISPLAY
# echo $DISPLAY
192.168.150.181:0.0
# firefox &
반응형
'Linux > CentOS' 카테고리의 다른 글
[manual]CentOS, RHEL (0) | 2013.06.05 |
---|---|
Unable to launch GUI as the X server display utility (xdpyinfo) not found, Exiting . (0) | 2013.04.04 |
Temporary failure in name resolution (0) | 2013.02.06 |
SSH 사용자 접속 제한 (0) | 2013.02.02 |
Disable ipv6 on CentOS 6 (0) | 2013.01.11 |
최근댓글