• ubuntu 20及之后版本添加开机自启服务


    Linux中关于service服务的一些学习记录

    [Unit]
    Description=nginx - high performance web server
    Documentation=http://nginx.org/en/docs/
    After=network.target remote-fs.target nss-lookup.target
      
    [Service]
    Type=forking
    PIDFile=/run/nginx.pid
    ExecStartPre=/usr/sbin/nginx -t -c /etc/nginx/nginx.conf
    ExecStart=/usr/sbin/nginx -c /etc/nginx/nginx.conf
    ExecReload=/bin/kill -s HUP $MAINPID
    ExecStop=/bin/kill -s QUIT $MAINPID
    PrivateTmp=true
      
    [Install]
    WantedBy=multi-user.target
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16

    [Unit]

    Description : 服务的简单描述

    Documentation : 服务文档

    Before、After:定义启动顺序。Before=xxx.service,代表本服务在xxx.service启动之前启动。After=xxx.service,代表本服务在xxx.service之后启动。

    Requires:这个单元启动了,它需要的单元也会被启动;它需要的单元被停止了,这个单元也停止了。

    Wants:推荐使用。这个单元启动了,它需要的单元也会被启动;它需要的单元被停止了,对本单元没有影响。


    [Service]

    Type=simple(默认值):systemd认为该服务将立即启动。服务进程不会fork。如果该服务要启动其他服务,不要使用此类型启动,除非该服务是socket激活型。

    Type=forking:systemd认为当该服务进程fork,且父进程退出后服务启动成功。对于常规的守护进程(daemon),除非你确定此启动方式无法满足需求,使用此类型启动即可。使用此启动类型应同时指定 PIDFile=,以便systemd能够跟踪服务的主进程。

    Type=oneshot:这一选项适用于只执行一项任务、随后立即退出的服务。可能需要同时设置 RemainAfterExit=yes 使得 systemd 在服务进程退出之后仍然认为服务处于激活状态。

    Type=notify:与 Type=simple 相同,但约定服务会在就绪后向 systemd 发送一个信号。这一通知的实现由 libsystemd-daemon.so 提供。

    Type=dbus:若以此方式启动,当指定的 BusName 出现在DBus系统总线上时,systemd认为服务就绪。

    Type=idle: systemd会等待所有任务(Jobs)处理完成后,才开始执行idle类型的单元。除此之外,其他行为和Type=simple 类似。

    PIDFile:pid文件路径

    ExecStart:指定启动单元的命令或者脚本,ExecStartPre和ExecStartPost节指定在ExecStart之前或者之后用户自定义执行的脚本。Type=oneshot允许指定多个希望顺序执行的用户自定义命令。

    ExecReload:指定单元停止时执行的命令或者脚本。

    ExecStop:指定单元停止时执行的命令或者脚本。

    PrivateTmp:True表示给服务分配独立的临时空间

    Restart:这个选项如果被允许,服务重启的时候进程会退出,会通过systemctl命令执行清除并重启的操作。

    RemainAfterExit:如果设置这个选择为真,服务会被认为是在激活状态,即使所以的进程已经退出,默认的值为假,这个选项只有在Type=oneshot时需要被配置。

    [Install]

    Alias:为单元提供一个空间分离的附加名字。

    RequiredBy:单元被允许运行需要的一系列依赖单元,RequiredBy列表从Require获得依赖信息。

    WantBy:单元被允许运行需要的弱依赖性单元,Wantby从Want列表获得依赖信息。

    Also:指出和单元一起安装或者被协助的单元。

    DefaultInstance:实例单元的限制,这个选项指定如果单元被允许运行默认的实例。


    使用脚本新建服务并设置开机自启

    #!/bin/bash
    #写入开机自启
    add_boot()
    {
    rc_ubuntu=`cat /etc/os-release | grep -o '[\"].*[\"]'| grep -o 'Ubuntu 1[6|8]'|wc -l`  	
    if [ $rc_ubuntu -eq 2 ] #20版本之后无/etc/rc.local
    then
    	echo "1"
    	echo "/root/node_exporter-1.3.1.linux-amd64/node_exporter">> /etc/rc.d/rc.local
    else #添加服务
    	echo "2"
    #touch node_boot
    #chmod 777 node_boot
    #echo "nohup ./root/node_exporter-1.3.1.linux-amd64/node_exporter &">node_turnon.sh;
    cat>/etc/systemd/system/node_exporter.service<<EOF
    [Unit]
    Description=node_exporter Monitoring System
    Documentation=node_exporter Monitoring System
    
    [Service]
    ExecStart=/root/node_exporter-1.3.1.linux-amd64/node_exporter --web.listen-address=:9100 
    
    [Install]
    WantedBy=multi-user.target
    EOF
    sleep 3;
    systemctl daemon-reload
    systemctl start node_exporter.service
    systemctl status node_exporter.service
    systemctl enable node_exporter.service
    #cp ./node_boot /etc/init.d/	            
    fi	
    
    }
    add_boot
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
  • 相关阅读:
    云桌面打开部署在linux的服务特别卡 怎么解决
    小红书信息流广告投放怎么收费?投信息流广告效果怎么样
    2024年华为OD机试真题-寻找最优的路测线路-Python-OD统一考试(C卷D卷)
    .NET 组件连接 activemq
    tomcat9w无法启动
    Outlook无法显示阅读窗格
    数字图像基础
    敏捷BI到底与传统BI有何不同?
    探索一些常见的存储过程奥秘
    新的ASP.NET Core 迁移指南
  • 原文地址:https://blog.csdn.net/weixin_42160117/article/details/125439633