Problem: I don't know how to restart the inet daemon, inetd. Solution: To restart the inet daemon, use the ps command to identify the process id of the inetd process: ps -e | grep inetd or ps -ax | grep inetd The number in the output column 'PID' is the process id of the inet daemon. Use the process id with the following command to restart the inet daemon: kill -HUP
Last Modified: 27-OCT-00