ftp -n 172.16.0.25 << EOF
user ftpuser 1111
passive
cd FTP
prompt
bin
mput ${thisDate}.tgz
quit
EOF

1. 문제점

Total download size: 63 M
Downloading packages:
No Presto metadata available for jenkins
warning: /var/cache/yum/x86_64/7/jenkins/packages/jenkins-2.235.3-1.1.noarch.rpm: Header V4 RSA/SHA512 Signature, key ID 45f2c3d5: NOKEY
Public key for jenkins-2.235.3-1.1.noarch.rpm is not installed
jenkins-2.235.3-1.1.noarch.rpm

 

2. 해결책

# wget -qO - https://pkg.jenkins.io/debian-stable/jenkins.io.key | apt-key add - 
# rpm --import https://pkg.jenkins.io/redhat-stable/jenkins.io.key

 

참고 : https://lovapi.tistory.com/173

1. 문제점

svn: E170013: Unable to connect to a repository at URL 'https://some.host/some/repo/'
svn: E120171: Error running context: An error occurred during SSL communication

 

2. 해결 방법

/usr/lib/ssl/openssl.cnf 파일을 다음과 같이 수정할 것

 

# 첫째 라인
openssl_conf = default_conf

.
.
.
# 끝라인
[ default_conf ]

ssl_conf = ssl_sect

[ssl_sect]

system_default = ssl_default_sect

[ssl_default_sect]
MinProtocol = TLSv1
CipherString = DEFAULT:@SECLEVEL=1

 

 

참고 : https://superuser.com/questions/1473219/subversion-error-svn-e120171-error-running-context-an-error-occurred-during

+ Recent posts