ubuntu:services:starting_a_service
Differences
This shows you the differences between two versions of the page.
ubuntu:services:starting_a_service [2019/12/04 20:41] – created peter | ubuntu:services:starting_a_service [2019/12/08 15:02] (current) – removed peter | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== Ubuntu - Services - Starting a service ====== | ||
- | |||
- | The recommended method to use it at the top of this list, but if that does not work try the other methods. | ||
- | |||
- | ===== Using systemctl ===== | ||
- | |||
- | <code bash> | ||
- | systemctl start service_name.service | ||
- | </ | ||
- | |||
- | Example: | ||
- | |||
- | <code bash> | ||
- | systemctl start apache2.service | ||
- | </ | ||
- | |||
- | ---- | ||
- | |||
- | ===== Using System V ===== | ||
- | |||
- | With **sysv-rc-conf** or **sysvconfig** under Debian or Ubuntu Linux. | ||
- | |||
- | <code bash> | ||
- | / | ||
- | </ | ||
- | |||
- | |||
- | Example: | ||
- | |||
- | <code bash> | ||
- | / | ||
- | </ | ||
- | |||
- | ---- | ||
- | |||
- | ===== Using Service ===== | ||
- | |||
- | **service** runs a System V init script in as predictable environment as possible, removing most environment variables and with current working directory set to /. | ||
- | |||
- | **service** works in most Linux distributions including Debian and Ubuntu. | ||
- | |||
- | <code bash> | ||
- | service service_name start | ||
- | </ | ||
- | |||
- | |||
- | Example: | ||
- | |||
- | <code bash> | ||
- | service apache2 start | ||
- | </ | ||
- | |||
- | ---- | ||
- | |||
- | ===== Using invoke-rc.d ===== | ||
- | |||
- | **invoke-rc.d** is a wrapper around running the System V style init script **/ | ||
- | |||
- | The policy may cause the command not to be run at all, based on the current runlevel and whether the daemon should be run in that runlevel. | ||
- | |||
- | By default, Debian does not differentiate between runlevels 2-5, but as the local administrator, | ||
- | |||
- | According to the man page, all access to init scripts by Debian packages' | ||
- | |||
- | * [https:// | ||
- | * [http:// | ||
- | |||
- | |||
- | <code bash> | ||
- | invoke-rc.d service_name start | ||
- | </ | ||
- | |||
- | Example: | ||
- | |||
- | <code bash> | ||
- | invoke-rc.d apache2 start | ||
- | </ | ||
- | |||
- | ---- | ||
- | |||
- | ===== Using Upstart ===== | ||
- | |||
- | **Upstart** is an event-based replacement for the /sbin/init daemon which handles starting of tasks and services during boot, stopping them during shutdown and supervising them while the system is running. | ||
- | |||
- | It was originally developed for the Ubuntu distribution, | ||
- | |||
- | **upstart** only works on certain version of Ubuntu. | ||
- | |||
- | * [http:// | ||
- | |||
- | |||
- | <code bash> | ||
- | start service_name | ||
- | </ | ||
- | |||
ubuntu/services/starting_a_service.1575492116.txt.gz · Last modified: 2020/07/15 09:30 (external edit)