How do I verify that service is turned on in xinetd under Fedora or Red Hat Linux?

by nixcraft on June 21, 2006 · 0 comments

Q. I am running Fedora Linux version 4.0 server. Couple of services run under xinetd. Now how do I verify that service is turned on in xinetd?

A. You can use command line tool called chkconfig or text based GUI tool called ntsysv. For example see if service foo:

# chkconfig --list foo

Output:

foo          off

As you see service foo is off, to turn on type command:

# chkconfig foo on
# chkconfig --list foo

Output:

foo           on

It is recommended that you use ntsysv, which is graphical tool and works on remote ssh session.

Featured Articles:

Share this with other sys admins!
Facebook it - Tweet it - Print it -

Leave a Comment

You can use these HTML tags and attributes for your code and commands: <strong> <em> <ol> <li> <u> <ul> <blockquote> <pre> <a href="" title="">
What is 8 + 12 ?
Please leave these two fields as-is:
Solve the simple math so we know that you are a human and not a bot.



Previous post:

Next post: