• Debian 11 is approaching its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.80 will be the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

Question No telnet no yum

Jacek

New Pleskian
Hi, I need to telnet yahoo server to troubleshoot why my mails are rejected by them. But I can't either telnet on root, or user or install telnet by yum. On both I have "command not recognized"
 
Well, depending on your Linux distribution you'll have to use either one of those to install telnet:
Code:
apt install telnet
or
Code:
dnf install telnet
or
Code:
yum install telnet

You'll have to figure out which Linux distribution you have so that you'll know in the future whether to use apt or yum or dnf....
 
Last edited:
Hi! I've know this convo dates back a while now.. but I'm trying to install telnet and I get this error message.. any clues?
thx

Errors during downloading metadata for repository 'mariadb':
- Curl error (28): Timeout was reached for https://mirror.its.dal.ca/mariadb/yum/10.6/rhel/8/x86_64/repodata/repomd.xml [Connection timed out after 30000 milliseconds]
Error: Failed to download metadata for repo 'mariadb': Cannot download repomd.xml: Cannot download repodata/repomd.xml: All mirrors were tried
 
@leopixelstudios , that looks like a connectivity issue with the MariaDB repository mirrors. What you can try is to temporarily disable the repository:

Code:
dnf install telnet --disablerepo=mariadb

or you can update the repository source in /etc/yum.repos.d/MariaDB.repo.
 
Back
Top