From d62308872f7195b353b92c0095fd656beec9c7cd Mon Sep 17 00:00:00 2001 From: andran777 <86196800+andran777@users.noreply.github.com> Date: Wed, 24 Aug 2022 13:00:43 +0530 Subject: [PATCH] Add service management content (#1588) --- .../content/101-os-concepts/109-service-management.md | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/content/roadmaps/102-devops/content/101-os-concepts/109-service-management.md b/content/roadmaps/102-devops/content/101-os-concepts/109-service-management.md index 7058e9d86..a1808b345 100644 --- a/content/roadmaps/102-devops/content/101-os-concepts/109-service-management.md +++ b/content/roadmaps/102-devops/content/101-os-concepts/109-service-management.md @@ -1 +1,10 @@ -# Service management \ No newline at end of file +# Service Management (systemd) + +`systemd` is a **System** Management **D**aemon which replaces the sysvinit process to become the first process with PID = 1, which gets executed in user space during the Linux start-up process. It is a system that is designed specifically for the Linux kernel. It is now being used as a **replacement of init.d** to overcome shortcomings of it. It uses `systemctl` command to perform related operations. + +e.g. `$ systemctl start [service-name]`, `$ systemctl poweroff` + +Free Content +What is systemd? and its commands +init.d vs systemd +Why Systemd as a replacement of init.d? \ No newline at end of file