G gacopl New Member Oct 11, 2013 1 0 1 Apr 19, 2015 #1 here's what i get when i try to install ceph on a node: pveceph install download and import ceph reqpository keys unable to download ceph release key: 500 Access to 'http' URIs has been disabled anybody knows way around this ? BR Michal
here's what i get when i try to install ceph on a node: pveceph install download and import ceph reqpository keys unable to download ceph release key: 500 Access to 'http' URIs has been disabled anybody knows way around this ? BR Michal
F Florent Member Apr 3, 2012 91 4 8 Apr 20, 2015 #2 It seems that Ceph repos changed recently. As a workaround, edit /usr/bin/pveceph and replace : Code: my $ua = LWP::UserAgent->new(protocols_allowed => ['https'], timeout => 30); With : Code: my $ua = LWP::UserAgent->new(protocols_allowed => ['https', 'http'], timeout => 30);
It seems that Ceph repos changed recently. As a workaround, edit /usr/bin/pveceph and replace : Code: my $ua = LWP::UserAgent->new(protocols_allowed => ['https'], timeout => 30); With : Code: my $ua = LWP::UserAgent->new(protocols_allowed => ['https', 'http'], timeout => 30);