Home  >  Article  >  Operation and Maintenance  >  How to install telnet on centos

How to install telnet on centos

王林
王林Original
2020-05-17 10:56:096021browse

How to install telnet on centos

System environment: centos7

Specific method:

1. Check whether telnet is installed

rpm -qa | grep telnet

2. yum install telnet

yum -y install telnet telnet-server xinetd

How to install telnet on centos

3. Set xinetd to start automatically at boot

systemctl enable xinetd.service

4. Set telnet to start automatically at boot

systemctl enable telnet.socket

5, Start the telnet service

systemctl start telnet.socket
systemctl start xinetd

6, Check whether the telnet service is started

netstat -antupl | grep 23

How to install telnet on centos

Recommended tutorial: centos tutorial

The above is the detailed content of How to install telnet on centos. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn