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

by on June 21, 2006 · 0 comments· last updated at June 21, 2006

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.



You should follow me on twitter here or grab rss feed to keep track of new changes.

Featured Articles:

{ 0 comments… add one now }

Leave a Comment

You can use these HTML tags and attributes for your code and commands: <strong> <em> <ol> <li> <u> <ul> <kbd> <blockquote> <pre> <a href="" title="">

Tagged as:

Previous Faq:

Next Faq: