Howto restart inetd service / daemon under Linux
Q. Can you tell us the command to restart inetd service under Linux?
A. inetd is a daemon on many Linux and Unix like systems that manages Internet services such as ftp, pop3 and many others.
According to wikipedia:
Often called a super-server, inetd listens on all ports used by internet services such as FTP, POP3, and telnet. When a TCP packet or UDP packet comes in with a particular port number, inetd launches the appropriate server program to handle the connection. For services that are not expected to run with high loads, this method uses memory more efficiently, as the specific servers run only when needed.
Task: Start inetd service
Type the command:
# /etc/init.d/inetd start
Task: Stop inetd service
Type the command:
# /etc/init.d/inetd stop
Task: Restart inetd service
Type the command:
# /etc/init.d/inetd restart
See also:
Subscribe to our free e-mail newsletter or RSS feed to get all updates.
You can Email this page to a friend.
Related Other Helpful FAQs:
- How To Tell If Your Linux Server Uses xinetd OR inetd sever
- Star / Stop FTP server on FreeBSD / OpenBSD
- Ubuntu Linux enable telnet service
- Increase the number of telnet sessions allowed
- Howto: configure xinetd service under Linux or UNIX systems
Discussion on This FAQ
Leave a Reply
We encourage your comments, and suggestions. But please stay on topic, be polite, and avoid spam. Thank you very much for stopping by our site!




September 8th, 2007 at 3:35 pm
Does not work for me: File does not exist!
May 28th, 2008 at 6:39 am
maybe
/usr/sbin/update-inetd
?
just try:
locate inetd
May 28th, 2008 at 6:48 am
sudo apt-get install telnetd
May 28th, 2008 at 7:32 am
then to restart inetd you run:
sudo /etc/init.d/openbsd-inetd restart