codecat@codecat-PC ~/workspace/kernel_src/trunk $ svn up
Password for '(null)' GNOME keyring:
svn: OPTIONS of 'https://xxx.xxx.xxx/svn/kernel_src/trunk': 인증에 실패하였습니다: Could not authenticate to server: rejected Basic challenge (https://xxx.xxx.xxx)

위와 같은 상황은 subversion이 gnome-keyring을 쓰려고 했는데 무슨 사유로 제대로 동작하지 않기 때문이다.

이를 해결하기 위해선, 

rm ~/.gnome2/keyring/login.keyring

을 실행하여 keyring 사용을 막으면 된다.

'리눅스 > 스크립트/유틸' 카테고리의 다른 글

svn -> git merge 하는 법  (0) 2012.09.19
svn tree conflicts 1  (2) 2012.09.18
svn up 하다가 password store한다고 할 때 진행 안될 때  (0) 2012.09.16
[vim] vba 파일 설치 방법  (0) 2012.09.09
.svn 지우기  (0) 2012.08.05
Posted by code cat


$>svn up

...

can only be stored to disk unencrypted! You are advised to configure
your system so that Subversion can store passwords encrypted, if
possible. See the documentation for details.

You can avoid future appearances of this warning by setting the value
of the 'store-plaintext-passwords' option to either 'yes' or 'no' in
'/home/codecat/.subversion/servers'.
-----------------------------------------------------------------------
Store password unencrypted (yes/no)? yes
Please type 'yes' or 'no': yes
Please type 'yes' or 'no': 예


한글 설정이 되어 있으면 위와 같이 'yes'로 해도 안 넘어가고 다시 물어본다.  그럴 때, '예' 라고 하자. -___-;;;;;;

'리눅스 > 스크립트/유틸' 카테고리의 다른 글

svn tree conflicts 1  (2) 2012.09.18
svn up 하다가 'password for '(null)' GNOME keyring 나오  (0) 2012.09.16
[vim] vba 파일 설치 방법  (0) 2012.09.09
.svn 지우기  (0) 2012.08.05
Code Sourcery 설치하기  (0) 2012.07.31
Posted by code cat