0
votes
1answer
219 views

How to list services/daemons started at boot _and_ check their loading order

I want to be sure in what order services are started during boot process in Debian based systems (Debian Squeeze in particular). Thanks in advance.
4
votes
1answer
176 views

What does a question mark mean when listing all services?

After executing the command service --status-all I get a listing of all the services on my machine. I get an output like this. [ ? ] acpi-fakekey [ ? ] acpi-support [ + ] acpid [ - ] anacron [ + ...
0
votes
3answers
235 views

debian symlink existing daemon incrond to start at boot

I'm triying to start the incron daemon "incrond" at boot but doesn't work. I have done : ln -s /usr/sbin/incrond /etc/init.d/incrond chmod 755 /etc/init.d/incrond update-rc.d incrond enable But no ...
0
votes
2answers
110 views

A service disabled on startup, but manually started, raises an error on shutdown

So here is the context. I have a Debian Squeeze (solely command-line) installed as a guest in VirtualBox. I installed MySQL, but decided to disable it on startup. So i found out that I can use ...
2
votes
2answers
2k views

RH/CentOS service & chkconfig equivalents in Ubuntu/Debian

In RedHat/CentOS distros, you start and stop services with /sbin/service: /sbin/service httpd reload You set whether they should run on startup with /sbin/chkconfig: /sbin/chkconfig --levels 2345 ...
1
vote
5answers
590 views

List of debian services

I'm looking for explanation of services installed with debian so i would know which ones i can shut down and which ones are critical. I had no luck in searching the net.
6
votes
5answers
168 views

Is it better to install server applications from an official distribution, or should I download and install (and manage) my own version?

I've often seen system administrators download and install server applications, including "stock" applications such as Apache, under a dedicated /srv or /opt directory instead of installing them from ...
3
votes
2answers
87 views

How to manage unprivileged administration of system services using Debian?

At our lab, we have several services handled by different phd students (like myself). Fluctuation is high and people do the job next to their research duties. Until now, services were running on ...
8
votes
5answers
650 views

Recommended way to disable a service in Debian

Is there a "recommended way" to disable a service in Debian? (Disable = The service is installed but won't start automatically when the machine boots.) I know that you can update-rc.d -f service ...
3
votes
8answers
1k views

What is the equivalent for “service servicename start” that Fedora/RHEL/CentOS uses for Debian/Ubuntu?

What is the equivalent for "service servicename start" that Fedora/RHEL/CentOS uses for Debian/Ubuntu? I've just read on some question here on serverfoault that using /etc/init.d/service is obsolete, ...
6
votes
3answers
4k views

How to stop git-daemon on debian

I'm running debian lenny server, and I've installed git on it. Now there is a git-daemon process (and appropriate opened port), but there is no /etc/init.d/git script that I could stop. I know there ...