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:
Featured Articles:
- 20 Linux System Monitoring Tools Every SysAdmin Should Know
- 20 Linux Server Hardening Security Tips
- My 10 UNIX Command Line Mistakes
- Linux: 20 Iptables Examples For New SysAdmins

- 25 PHP Security Best Practices For Sys Admins
- The Novice Guide To Buying A Linux Laptop
- 10 Greatest Open Source Software Of 2009
- Top 5 Email Client For Linux, Mac OS X, and Windows Users
- Top 20 OpenSSH Server Best Security Practices
- Top 10 Open Source Web-Based Project Management Software
- Top 5 Linux Video Editor Software
Facebook it - Tweet it - Print it -


{ 7 comments… read them below or add one }
Does not work for me: File does not exist!
maybe
/usr/sbin/update-inetd
?
just try:
locate inetd
sudo apt-get install telnetd
then to restart inetd you run:
sudo /etc/init.d/openbsd-inetd restart
The best way is
killall -HUP inetd
will work on all linux version :)
Beginning with 2.3.11 xinetd is shipped with an optional inetd.conf compatibility mode.
Parse all the xinetd config files first, then parse /etc/inetd.conf, and add services from there (if it exists). Use the -inetd_compat option to read inetd.conf.
Read document: /usr/share/doc/xinetd/README.update-inetd if you have xinetd installed.
Hi,
Could anyone help me, how one can tell the port_numbers that are in use ? For instance, which port_number a printer could be using ?