svn 오류 반복메시지 – Store password unencrypted (yes/no)? 증상
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
root@debian:~# svn ls svn://localhost/PLC/ 인증 영역(realm): 084423a3-f25c-4e30-8af4-63d272a90f82 '********'의 암호: ----------------------------------------------------------------------- ATTENTION! Your password for authentication realm: 00000000-f25c-4e30-8af4-000000000000 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 '/root/.subversion/servers'. ----------------------------------------------------------------------- Store password unencrypted (yes/no)? yes Please type 'yes' or 'no': yes Please type 'yes' or 'no': |
해결
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
[global] # http-proxy-exceptions = *.exception.com, www.internal-site.org # http-proxy-host = defaultproxy.whatever.com # http-proxy-port = 7000 # http-proxy-username = defaultusername # http-proxy-password = defaultpassword # http-compression = no # http-auth-types = basic;digest;negotiate # No http-timeout, so just use the builtin default. # No neon-debug-mask, so neon debugging is disabled. # ssl-authority-files = /path/to/CAcert.pem;/path/to/CAcert2.pem # Password / passphrase caching parameters: # store-passwords = no store-passwords = yes # store-plaintext-passwords = no store-plaintext-passwords = yes # store-ssl-client-cert-pp = no # store-ssl-client-cert-pp-plaintext = no |
해결 전 설정 해결 후 설정 확인
1 2 3 4 5 6 |
root@debian:~# svn ls svn://localhost/PLC 인증 영역(realm): 084423a3-f25c-4e30-8af4-63d272a90f82 '********'의 암호: branches/ tags/ trunk/ |