• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • We are looking for U.S.-based freelancer or agency working with SEO or WordPress for a quick 30-min interviews to gather feedback on XOVI, a successful German SEO tool we’re looking to launch in the U.S.
    If you qualify and participate, you’ll receive a $30 Amazon gift card as a thank-you. Please apply here. Thanks for helping shape a better SEO product for agencies!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

Resolved Cannot retrieve channel.xml for channel "pecl.php.net"

yog512

New Pleskian
Server operating system version
Ubuntu 24.04
Plesk version and microupdate number
18.0.67#1
Hi,
i cant install PECL Packages which is not responding:
# /opt/plesk/php/8.4/bin/pecl channel-update pecl.php.net
Updating channel "pecl.php.net"
Channel "pecl.php.net" is not responding over http://, failed with message: Connection to `pecl.php.net:80' failed: Connection timed out
Trying channel "pecl.php.net" over https:// instead
Cannot retrieve channel.xml for channel "pecl.php.net" (Connection to `ssl://pecl.php.net:443' failed: Connection timed out)

In Plesk, for every PHP Version it is impossible to install any PECL Package. I´ve tried to update Channel, see above and it fails.
 
Are you able to reach pecl.php.net? It's possible at the time when you tried to do it that pecl.php.net's server was down, either that or pecl.php.net is being blocked from your server for whatever reason.
 
I've been trying for a week. Maybe it's because of Immunify 360?

I don't think it's banned:
root@XXXXXX:~# wget https://pecl.php.net/get/apcu-5.1.24.tgz
--2025-02-08 04:04:43-- https://pecl.php.net/get/apcu-5.1.24.tgz
Resolving pecl.php.net (pecl.php.net)... 2604:a880:800:10::621:6001, 104.236.228.160
Connecting to pecl.php.net (pecl.php.net)|2604:a880:800:10::621:6001|:443... failed: Connection timed out.
Connecting to pecl.php.net (pecl.php.net)|104.236.228.160|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 90866 (89K) [application/octet-stream]
Saving to: ‘apcu-5.1.24.tgz.1’

apcu-5.1.24.tgz.1 100%[==================================>] 88.74K 485KB/s in 0.2s

2025-02-08 04:06:57 (485 KB/s) - ‘apcu-5.1.24.tgz.1’ saved [90866/90866]

Ok, there seems IPv6 not working. I don't know.
 
If your server does not need IPv6, disable it, otherwise change the priority so IPv4 is preferred then figure out why your IPv6 is not working afterwards.
 
Ok. That was it.
vim /etc/sysctl.conf
adding then on the bottom:
net.ipv6.conf.all.disable_ipv6 = 1
net.ipv6.conf.default.disable_ipv6 = 1

sysctl -p
systemctl restart networking

and then the same thing backwards (i need v6!)

remove
net.ipv6.conf.all.disable_ipv6 = 1
net.ipv6.conf.default.disable_ipv6 = 1

sysctl -p
systemctl restart networking

root@XXXXXX:~# /opt/plesk/php/8.4/bin/pecl channel-update pecl.php.net
Updating channel "pecl.php.net"
Update of Channel "pecl.php.net" succeeded

I dont know why it now runs, but it is now fully functionally.
 
Back
Top