SSL चेक rpm को अक्षम करें


15

किसी भी आरपीएम कमांड को चलाने की कोशिश करते समय मुझे फॉलो एरर मिलता है। मुझे यकीन नहीं है कि मुझे कर्ल त्रुटि क्यों हो रही है लेकिन मैंने कई अलग-अलग विकल्पों की कोशिश की है जो सभी विफल रहे हैं।

CentOS7 चल रहा है और एक प्रॉक्सी के पीछे

[root@CentOS7]# rpm -Uvh https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
Retrieving https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
curl: (60) Peer's certificate issuer has been marked as not trusted by the user.
More details here: http://curl.haxx.se/docs/sslcerts.html

curl performs SSL certificate verification by default, using a "bundle"
 of Certificate Authority (CA) public keys (CA certs). If the default
 bundle file isn't adequate, you can specify an alternate file
 using the --cacert option.
If this HTTPS server uses a certificate signed by a CA represented in
 the bundle, the certificate verification probably failed due to a
 problem with the certificate (it might be expired, or the name might
 not match the domain name in the URL).
If you'd like to turn off curl's verification of the certificate, use
 the -k (or --insecure) option.
error: skipping https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm - transfer failed

इसलिए मैंने एक वेबसाइट के अनुसार एक चेक चलाया जो मुझे लगता है कि काम किया है।

[root@CentOS7]# curl -k https://google.com
<HTML><HEAD><meta http-equiv="content-type" content="text/html;charset=utf-8">
<TITLE>301 Moved</TITLE></HEAD><BODY>
<H1>301 Moved</H1>
The document has moved
<A HREF="https://www.google.com/">here</A>.
</BODY></HTML>

मैं एक प्रॉक्सी के पीछे हूं और निर्यात कमांड चलाता हूं।

export https_proxy=https://USERNAME:PASSWORD@my.proxy.com:8080/

मेरा सवाल है:

  1. आरपीएल के बराबर कर्ल -k क्या है?

  2. क्या कर्ल है।कॉन्फिग कहीं पर मैं कर्ल को एसएलआर सेर्ट्स के लिए जांच नहीं करने के लिए कह सकता हूं? मैंने पढ़ा है कि यह एक बुरा विचार है, लेकिन मैंने एक अलग सर्वर पर दो रिपोज का परीक्षण किया है जिसने मुझे त्रुटि नहीं दी, वह भी प्रॉक्सी के पीछे नहीं है।

  3. Im बिल्कुल यकीन नहीं है कि rpm का संबंध कर्ल से है, लेकिन मैं यह मान रहा हूं क्योंकि मुझे एक कर्ल एरर मिल रहा है कि कर्ल क्या एरर दे रहा है?

मैंने rpm और कर्ल दोनों के लिए RTM किया और यह पता लगाने की जरूरत नहीं है कि क्या किया जाना चाहिए। मैंने कहीं पढ़ा था कि मुझे चाबी या कुछ और आयात करने की ज़रूरत है, लेकिन मुझे यकीन नहीं है कि मुझे लगता है कि वहां भी क्या होगा।


1
तुम बस क्यों नहीं yum install epel-release? आपको इसे मैन्युअल रूप से डाउनलोड करने की आवश्यकता नहीं है।
माइकल हैम्पटन

[root @ CentOS7] # yum इंस्टॉल करें dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm लोड किए गए प्लगइन्स: सबसे तेज़ी से खुला नहीं रह सकता है: dl.fedoraproject.org/pub/epel/epel-release नवीनतम-7.noarch.rpm । रस्सी कूदना। त्रुटि: कुछ नहीं करने के लिए
एंथनी Fornito

यह सब किस बारे में हैं?
माइकल हैम्पटन

यह आउटपुट था जो मुझे बस रनिंग यम इंस्टॉल एपल-रिलीज़ से मिला था, इसने https भाग के होने को काट दिया, लेकिन इसने उस त्रुटि को फेंक दिया
एंथनी फोरनिटो

ऐसा नहीं लगता कि आप भाग गए yum install epel-release। ऐसा लगता है कि आप इसके बजाय एक URL में चिपकाए गए हैं। पुनः प्रयास करें।
माइकल हैम्पटन

जवाबों:


15

आपको क्या करने की आवश्यकता है:

wget https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm

यदि आपको अभी भी SSL चेतावनी का प्रयास मिलता है:

wget --no-check-certificate https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm

तब आप कर सकते हो

rpm -Uvh webtatic-release.rpm

जो यहाँ दिखाना चाहिए:

ll /etc/yum.repos.d
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.