美文网首页
Nginx 开机自启

Nginx 开机自启

作者: fbckf | 来源:发表于2018-10-23 21:23 被阅读0次

上一篇 Nginx 安装

添加 nginx 为系统服务,设置开机自启

  1. 在 /lib/systemd/system 目录添加 nginx.service 文件
vim /lib/systemd/system/nginx.service
  1. 写入以下内容,保存退出
[Unit]
Description=nginx - high performance web server
Documentation=http://nginx.org/en/docs/
After=network.target
[Service]
Type=forking
ExecStart=/usr/local/nginx/sbin/nginx
ExecReload=/usr/local/nginx/sbin/nginx -s reload
ExecStop=/usr/local/nginx/sbin/nginx -s  stop
PrivateTmp=true
   
[Install]  
WantedBy=multi-user.target
  1. 设置开机自启
# 设置开机启动
systemctl enable nginx
  1. 其它命令
# 启动 nginx
systemctl start nginx
# 停止
systemctl stop nginx
# 加载配置文件
systemctl reload nginx

下一篇 暂无Nginx 配置文件

相关文章

  • systemctl管理进程自启

    php-fpm开机自启 php-fpm.service nginx开机自启 nginx.service mysql...

  • Nginx 开机自启

    上一篇 Nginx 安装 添加 nginx 为系统服务,设置开机自启 在 /lib/systemd/system ...

  • nginx1.12.1 配置php70w

    1, 确保 nginx 和 php70w组件安装好2, 设置开机自启 systemctl enable nginx...

  • CentOS 7 软件安装之Nginx yum 安装

    1.添加Nginx到yum源 2.安装Nginx 3.启动Nginx服务 4.设置nginx开机自启 5.验证安装...

  • Linux常用命令

    查看系统 查看进程 启动nginx 重启nginc 服务 启动mysql 重启mysql 设置开机自启

  • Nginx 配置文件

    上一篇 Nginx 开机自启 nginx 默认配置文件 1. 结构 在 nginx 的配置文件中,大概分为几个区域...

  • CentOs 安装 nginx

    默认没有nginx源 安装 运行 开机自启 配置文件修改 Server具体配置文件

  • Nginx

    nginx3个核心模块: centos6 源码安装 Nginx后做开机自启:方法一:在 rc.local 中...

  • nginx的安装和配置网站

    1.关闭selinux和防火墙 2.添加nginx官方源 3.安装nginx,然后启动nginx并加入开机自启 4...

  • ubuntu 设置nginx 开机自启

    1.建立服务文件 说明: Description:描述服务After:依赖,当依赖的服务启动之后再启动自定义的服务...

网友评论

      本文标题:Nginx 开机自启

      本文链接:https://www.haomeiwen.com/subject/drlzzftx.html