Python 开发者的日常centos应用服务配置程序员的课本

CentOS 7 设置自启动

2018-05-08  本文已影响53人  KenZhangCn

开发中我们经常需要设置一些自启动服务, 用来做一些定时任务或者是服务器遇到问题重启时自动启动服务.


在CentOS 6中, 我们通过在/etc/init.d/添加自启动脚本来设置自启动. 下在CentOS 7中, 设置自启动的方法发生了改变. 虽然我们任然可以使用脚本来添加自启动, 但是官方更建议使用服务来设置自启动.

方法一: 通过配置系统服务来设置自启动

在CentOS 7中, 一些软件程序会在安装时自动创建服务, 比如Apache, PHP, MySQL, Nginx等等, 对于已经创建好的服务, 我们唯一要做的就是把服务设置成自启动就可以了. 我们以MySQL为例.

  1. 安装完成MySQL之后, 执行语句把MySQL服务设置成自启动:

    # systemctl enable mysqld
    
  2. 设置完成之后, 检查一下状态:

    # systemctl status mysqld
    

    会打印出类似下列信息:

    ● mysqld.service - MySQL Server
    Loaded: loaded (/usr/lib/systemd/system/mysqld.service; enabled; vendor preset: disabled)
    Active: active (running) since 五 2018-04-27 16:38:40 CST; 1 weeks 3 days ago
      Docs: man:mysqld(8)
           http://dev.mysql.com/doc/refman/en/using-systemd.html
    Main PID: 18169 (mysqld)
      CGroup: /system.slice/mysqld.service
              └─18169 /usr/sbin/mysqld --daemonize --pid-file=/var/run/mysqld/mysqld.pid
    
  3. 如果不需要自启动了, 可以取消服务的自启动:

    # systemctl disable mysqld
    
  4. 当然, 我们也可以自己创建服务. 例如我们创建一个名为sample.service的服务:

    # vi /etc/systemd/system/sample.service
    [Unit]
    Description=Description for sample script goes here
    After=network.target
    
    [Service]
    Type=simple
    ExecStart=/var/tmp/test_script.sh
    TimeoutStartSec=0
    
    [Install]
    WantedBy=default.target
    

    After=代表要在其他的某些程序完成之后再执行.
    Type=代表执行顺序和方式.
    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: 服务会延迟启动, 一直到其他服务都启动完成之后才会启动此服务.
    WantedBy=代表启动目标.
    target是一个类似而又不同于启动级别(runlevel)的概念. 参考Systemd服务简介.

  5. 遇到问题的时候, 可以参考一下其他软件的配置.

    # cat /usr/lib/systemd/system/postgresql-10.service
    

    比如PostgreSQL的service文件:

    # It's not recommended to modify this file in-place, because it will be
    # overwritten during package upgrades.  If you want to customize, the
    # best way is to create a file "/etc/systemd/system/postgresql-10.service",
    # containing
    #   .include /usr/lib/systemd/system/postgresql-10.service
    #   ...make your changes here...
    # For more info about custom unit files, see
    # http://fedoraproject.org/wiki/Systemd#How_do_I_customize_a_unit_file.2F_add_a_custom_unit_file.3F
    
    # Note: changing PGDATA will typically require adjusting SELinux
    # configuration as well.
    
    # Note: do not use a PGDATA pathname containing spaces, or you will
    # break postgresql-setup.
    [Unit]
    Description=PostgreSQL 10 database server
    Documentation=https://www.postgresql.org/docs/10/static/
    After=syslog.target
    After=network.target
    
    [Service]
    Type=notify
    
    User=postgres
    Group=postgres
    
    # Note: avoid inserting whitespace in these Environment= lines, or you may
    # break postgresql-setup.
    
    # Location of database directory
    Environment=PGDATA=/var/lib/pgsql/10/data/
    
    # Where to send early-startup messages from the server (before the logging
    # options of postgresql.conf take effect)
    # This is normally controlled by the global default set by systemd
    # StandardOutput=syslog
    
    # Disable OOM kill on the postmaster
    OOMScoreAdjust=-1000
    Environment=PG_OOM_ADJUST_FILE=/proc/self/oom_score_adj
    Environment=PG_OOM_ADJUST_VALUE=0
    
    ExecStartPre=/usr/pgsql-10/bin/postgresql-10-check-db-dir ${PGDATA}
    ExecStart=/usr/pgsql-10/bin/postmaster -D ${PGDATA}
    ExecReload=/bin/kill -HUP $MAINPID
    KillMode=mixed
    KillSignal=SIGINT
    
    
    # Do not set any timeout value, so that systemd will not kill postmaster
    # during crash recovery.
    TimeoutSec=0
    
    [Install]
    WantedBy=multi-user.target
    

方法二: 通过自启动脚本来设置

  1. 创建一个名为test_script.sh的脚本并写入内容:
    # vi /var/tmp/test_script.sh
    #!/bin/bash
    echo "This is a sample script to test auto run during boot" > /var/tmp/script.out
    echo "The time the script run was -->  `date`" >> /var/tmp/script.out
    
  2. 检查文件权限:
    # ls -lrt /var/tmp/test_script.sh
    
  3. 如果没有权限, 则添加可执行权限:
    # chmod +x /var/tmp/test_script.sh
    
  4. /etc/rc.d/rc.local文标记为可执行文件:
    在CentOS 7中, /etc/rc.d/rc.local文件的权限被降低了, 开机的时候执行在自己的脚本是不能起动一些服务的, 执行下面的命令将文件标记为可执行的文件.
    # chmod +x /etc/rc.d/rc.local
    
  5. 打开/etc/rc.d/rc.local文件, 写入上面的文件:
    # vi /etc/rc.d/rc.local
    /var/tmp/test_script.sh
    

虽然两种方法都可以设置自启动, 但是不建议通过脚本来设置, 建议通过设置服务来启动.


文章来源整理自网络.
How to Auto-start Services on Boot in Linux?
CentOS / RHEL 7 : How to create custom script to run automatically during boot
Centos7开机启动自己的脚本的方法
Systemd及service文件解析
Systemd服务简介

上一篇下一篇

猜你喜欢

热点阅读