CentOS 7.x Setup Custom boot, add custom system service

Source: Internet
Author: User

Centos System Services Script directory:

    1. /usr/lib/systemd/

System and users (user),

If you need to boot the program can be run without logging in, there is system services (systems), that is:

    1. /lib/systemd/system/  

Conversely, the user login to run the program, the presence of users (user)

The service ends with a. Service.

This is an example of an nginx boot operation.

1. Create a service file
    1. vim /lib/systemd/system/nginx.service  
  1. [Unit]
  2. Description=nginx
  3. After=network.target
  4. [Service]
  5. Type=forking
  6. Execstart=/www/lanmps/init.d/nginx start
  7. Execreload=/www/lanmps/init.d/nginx restart
  8. Execstop=/www/lanmps/init.d/nginx stop
  9. Privatetmp=true
  10. [Install]
  11. Wantedby=multi-user.target

[Unit]: Description of the service

Description: Description Service
After: Describe the service category

settings for the [service] service run parameter

Type=forking is the form of a background run
Execstart specific run commands for the service
Execreload Reset Command
Execstop for Stop command
Privatetmp=true represents a separate temporary space allocated to the service
Note: The start, restart, and stop commands for [Service] all require absolute paths

Settings for the [Install] service installation, which can be set to multi-user

2. Save the Directory

Save in Directory with 754 permissions:

    1. /lib/systemd/system
3. Set up boot from boot

    1. Systemctl Enable Nginx.service

4. Other commands

Tasks old directives new directives
enable a service to start automatically chkconfi G--level 3 httpd  on              systemctl enable Httpd.service
cause a service not to start automatically chkconfig--level 3 httpd off systemctl disable Httpd.service
Check service status services httpd status systemctl status httpd.service (service details)  
Sys Temctl is-active Httpd.service (show only active)
Show All services started chkconfig--list sy Stemctl list-units--type=service
start a service service httpd start systemctl start Httpd.service
Stop a service service httpd stop systemctl stop Httpd.service
Restart a service service httpd restart systemctl restart Httpd.service

Start Nginx Service

Systemctl Start Nginx.service

Set up boot from

Systemctl Enable Nginx.service

Stop Boot from booting

Systemctl Disable Nginx.service

View the current status of the service

Systemctl Status Nginx.service

Restart Service

Systemctl Restart Nginx.service

View all services that have been started

Systemctl list-units--type=service

CentOS 7.x Setup Custom boot, add custom system service

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.