• nginx centos 服务开机启动设置实例详解


    这篇文章主要介绍了nginx centos 服务开机启动设置实例详解的相关资料,这里对服务开机启动做了详细的步骤介绍,需要的朋友可以参考下

    nginx centos 服务开机启动设置

    建立服务文件

    以nginx 为例

    vim /lib/systemd/system/nginx.service 

    在nginx.service 中插入一下内容

     
    [Unit] 
    Description=nginx 
    After=network.target 
    
    [Service] 
    Type=forking 
    ExecStart= 服务启动命令
    ExecReload= 服务重启命令
    ExecStop=服务停止命令
    PrivateTmp=true 
    
    [Install] 
    WantedBy=multi-user.target 
    

      

    [Unit]:服务的说明
    Description:描述服务
    After:描述服务类别
    [Service]服务运行参数的设置
    Type=forking是后台运行的形式
    ExecStart为服务的具体运行命令
    ExecReload为重启命令
    ExecStop为停止命令
    PrivateTmp=True表示给服务分配独立的临时空间
    注意:[Service]的启动、重启、停止命令全部要求使用绝对路径

    以754的权限保存在目录:/lib/systemd/system 

    设置开机自启动:

    systemctl enable nginx.service

    相关命令

    功能                                       cnetos7以前                                          cnetos7
    显示所有已启动的服务            chkconfig --list                 systemctl list-units --type=service

    启动某服务       service nginx start systemctl             start nginx.service 或 systemctl start nginx

    停止某服务       service nginx stop systemctl             stop nginx.service 或 systemctl stop nginx

    重启某服务       service nginx restart                    systemctl restart nginx.service 或 systemctl restart nginx

    使某服务自动启动     chkconfig --level 3 nginx  on       systemctl enable nginx.service 或 systemctl enable nginx

    使某服务不自动启动     chkconfig --level 3 nginx off    systemctl disable nginx.service 或 systemctl disable nginx

    检查服务状态       service nginx status                 systemctl is-active nginx.service (仅显示是否)Activesystemctl status nginx.service (服务详细信息)

    有任何需要沟通交流的联系QQ群:276483863 加好友备注【博客园技术交流】
  • 相关阅读:
    关于MySQL与SQLLite的Group By排序原理的差别
    利用Java针对MySql封装的jdbc框架类 JdbcUtils 完整实现(包括增删改查、JavaBean反射原理,附源代码)
    深入java并发Lock一
    windows 7 SDK和DDK下载地址
    用cocos2d-x 3.2 实现的FlappyBird
    Java替代C语言的可能性
    Spring Quartz结合Spring mail定期发送邮件
    web小流量实验方案
    paip.微信菜单直接跳转url和获取openid流程总结
    【java web】java运行预编译Groovy脚本
  • 原文地址:https://www.cnblogs.com/JoePotter/p/14650355.html
Copyright © 2020-2023  润新知