Detailed explanation of two ways of Linux service management: service and systemctl

Detailed explanation of two ways of Linux service management: service and systemctl

1.service command

The service command actually goes to the /etc/init.d directory to execute related programs

# The service command starts the redis script service redis start
# Start the redis script directly /etc/init.d/redis start
# Startup update-rc.d redis defaults

We need to write the script ourselves

2.systemctl command

systemd is the latest initialization system (init) of the Linux system. Its function is to increase the system startup speed, start as few processes as possible, and start as many processes concurrently as possible.

The process management command corresponding to systemd is systemctl

1) The systemctl command is compatible with service

That is, systemctl will also go to the /etc/init.d directory to view and execute related programs

systemctl redis start
systemctl redis stop
# Systemctl enable redis

2) The systemctl command manages systemd's resource units

The systemd unit is placed in the directory / usr/lib/systemd/system(Centos)或/etc/systemd/system(Ubuntu)


There are four main types of files: mount, service, target, and want.

.mount File


The .mount file defines a mount point. The configuration of the What, Where, and Type data items in the [Mount] node is equivalent to the following command:

mount -t hugetlbfs /dev/hugepages hugetlbfs

.service file


The .service file defines a service, which is divided into three sections: [Unit], [Service], and [Install]

[Unit]

Description:

After: Start after network.target, auditd.service is started

ConditionPathExists: Execution conditions

[Service]

EnvironmentFile: The file where the variable is located

ExecStart: Execute the startup script

Restart: Restart when fail

[Install]
Alias: Service alias
WangtedBy: Required in multi-user mode

.target file


.target defines some basic components for .service files to call

.wants File


The .wants file defines the set of files to be executed. Each time it is executed, the files in the .wants folder will be executed.

Summarize

The above is the two Linux service management methods service and systemctl introduced by the editor. I hope it will be helpful to everyone. If you have any questions, please leave me a message and the editor will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!
If you find this article helpful, please feel free to reprint it and please indicate the source. Thank you!

You may also be interested in:
  • Linux &, use of nohup and Systemctl
  • Detailed explanation of systemctl command in Linux system
  • SystemC environment configuration method under Linux system

<<:  Realize super cool water light effect based on canvas

>>:  Mybatis mysql delete in operation can only delete the first data method

Recommend

Content-type description, that is, the type of HTTP request header

To learn content-type, you must first know what i...

Conflict resolution when marquee and flash coexist in a page

The main symptom of the conflict is that the FLASH...

JavaScript MouseEvent Case Study

MouseEvent When the mouse performs a certain oper...

CSS setting div background image implementation code

Adding background image control to a component re...

Native JS to implement click number game

Native JS implements the click number game for yo...

How to design the homepage of Tudou.com

<br />I have been working in front-end for s...

Notes on element's form components

Element form and code display For details, please...

Detailed analysis of MySQL master-slave replication

Preface: In MySQL, the master-slave architecture ...

JavaScript to implement voice queuing system

Table of contents introduce Key Features Effect d...

MySQL high availability solution MMM (MySQL multi-master replication manager)

1. Introduction to MMM: MMM stands for Multi-Mast...

Solution to 2059 error when connecting Navicat to MySQL

Recently, when I was learning Django, I needed to...

MyBatis dynamic SQL comprehensive explanation

Table of contents Preface Dynamic SQL 1. Take a l...

Solution to the problem that docker logs cannot be retrieved

When checking the service daily, when I went to l...

Google Translate Tool: Quickly implement multilingual websites

Google China has released a translation tool that ...