No xinetd service: 1. The /etc/init.d directory contains scripts for all daemon services. Xinetd is one of these scripts. 2. Xinetd is a special super daemon that manages a series of daemon services. These services are started by Xinetd only when called, and are slightly slower than standalone daemon services. These services are configured in the /etc/xinetd.conf and /etc/xinetd.d directories.

If not, you can set up the service manually.

yum install xinetd -y
Copy the code

Restarting the xinetd service:

[chb@TEST xinetd.d]$ sudo  service xinetd restart
Redirecting to /bin/systemctl restart  xinetd.service
[chb@TEST xinetd.d]$ 
Copy the code