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
- mysql alter
- 로그 삭제
- 컴파일러 입문
- 렉스 컴파일
- linux log
- mysql 갱신
- vim 자동정렬
- 렉스
- alter 명령어
- 리눅스 gui
- db덤프
- db 백업
- mysql 계정삭제
- 리눅스 로그
- 리눅스
- 리눅스 로그 삭제
- vim 정렬
- 자동정렬
- x-window
- 데이터베이스 갱신
- alter 문법
- lex compiler
- mysql 계정생성
- 데이터 갱신
- db 덤프
- mysql update
- x윈도우
- 컴파일 설치
- mysql 권한부여
- lex 컴파일
Archives
- Today
- Total
It's under your control.
[Ubuntu] SSH 접속이 느릴 때 본문
Ubuntu에서 ssh를 사용해 원격 컴퓨터에 접속할 때 상당히 오래 기다려야 하는 경우가 있다.
-v 옵션을 사용하면 디버깅 메시지를 볼 수 있는데, 붉은색으로 표시한 부분에서 상당히 지연됨을 알 수 있었다.
$ ssh xx.xxxx.com -v
.............
debug1: Authentications that can continue: publickey,gssapi-with-mic,password
debug1: Next authentication method: gssapi-with-mic
debug1: Unspecified GSS failure. Minor code may provide more information
Credentials cache file '/tmp/krb5cc_1000' not found
debug1: Unspecified GSS failure. Minor code may provide more information
Credentials cache file '/tmp/krb5cc_1000' not found
debug1: Unspecified GSS failure. Minor code may provide more information
debug1: Next authentication method: publickey
debug1: Trying private key: /home/cherrykyun/.ssh/identity
debug1: Trying private key: /home/cherrykyun/.ssh/id_rsa
debug1: Trying private key: /home/cherrykyun/.ssh/id_dsa
debug1: Next authentication method: password
/etc/ssh/ssh_config 파일에서 "GSSAPIAuthentication no" 부분을 찾아 주석을 제거하면 해결된다.
............
# ForwardAgent no
# ForwardX11 no
# ForwardX11Trusted yes
# RhostsRSAAuthentication no
# RSAAuthentication yes
# PasswordAuthentication yes
# HostbasedAuthentication no
GSSAPIAuthentication no
# GSSAPIDelegateCredentials no
# GSSAPIKeyExchange no
'Works > Linux' 카테고리의 다른 글
VirtualHost 설정시 에러 Warning: DocumentRoot [/home/***/public_html] does not exist (0) | 2013.05.11 |
---|---|
tar 압축 하기 or 압축 풀기 (0) | 2013.05.03 |
리눅스 시작프로그램 설정 (0) | 2013.05.03 |
dpkg 사용법 (0) | 2013.05.03 |
리눅스 vim 자동정렬 하기 (0) | 2013.04.24 |