CentOS7添加Nginx为系统服务

1.编辑系统服务

vim /usr/lib/systemd/system/nginx.service 
[unit]
Description=Web Service
After=network.target
[Service]
PIDFile=/var/run/nginx.pid
ExecStart=/usr/local/nginx/sbin/nginx
ExecStop=/usr/local/nginx/sbin/nginx -s stop
ExecReload=/usr/local/nginx/sbin/nginx -s reload
PrivateTmp=true
[INSTALL]
WantedBy=default.target

2.修改权限

chmod 755 /usr/lib/systemd/system/nginx.service

3.测试是否成功

[[email protected] ~]# systemctl start nginx 
[[email protected] ~]# systemctl status nginx
● nginx.service
   Loaded: loaded (/usr/lib/systemd/system/nginx.service; static; vendor preset: disabled)
   Active: active (running) since Wed 2017-07-26 15:37:34 CST; 8min ago
  Process: 24964 ExecReload=/usr/local/nginx/sbin/nginx -s reload (code=exited, status=0/SUCCESS)
 Main PID: 24956 (nginx)
   CGroup: /system.slice/nginx.service
           ├─24956 nginx: master process /usr/local/nginx/sbin/ngin...
           └─24965 nginx: worker process
Jul 26 15:37:34 nginx systemd[1]: Started nginx.service.
Jul 26 15:37:34 nginx systemd[1]: Starting nginx.service...
Jul 26 15:37:36 nginx systemd[1]: Reloaded nginx.service.
[[email protected] ~]# systemctl reload nginx
[[email protected] ~]# ss -tln
State      Recv-Q Send-Q Local Address:Port               Peer Address:Port              
LISTEN     0      128     *:80                  *:*                  
LISTEN     0      128     *:22                  *:*                  
LISTEN     0      100    127.0.0.1:25                  *:*                  
LISTEN     0      128    :::22                 :::*                  
LISTEN     0      100       ::1:25                 :::*
[[email protected] ~]# systemctl stop nginx
[[email protected] ~]# systemctl status nginx
● nginx.service
   Loaded: loaded (/usr/lib/systemd/system/nginx.service; static; vendor preset: disabled)
   Active: inactive (dead)
Jul 26 15:37:36 nginx systemd[1]: Reloaded nginx.service.
Jul 26 15:46:16 nginx systemd[1]: Reloaded nginx.service.
Jul 26 15:46:47 nginx systemd[1]: Stopping nginx.service...
Jul 26 15:46:47 nginx systemd[1]: Stopped nginx.service.
Jul 26 15:46:47 nginx systemd[1]: [/usr/lib/systemd/system/nginx.s....
Jul 26 15:46:47 nginx systemd[1]: [/usr/lib/systemd/system/nginx.s....
Jul 26 15:46:47 nginx systemd[1]: [/usr/lib/systemd/system/nginx.s....
Jul 26 15:46:47 nginx systemd[1]: [/usr/lib/systemd/system/nginx.s....
Jul 26 15:46:49 nginx systemd[1]: [/usr/lib/systemd/system/nginx.s....
Jul 26 15:46:49 nginx systemd[1]: [/usr/lib/systemd/system/nginx.s....
Hint: Some lines were ellipsized, use -l to show in full.
[[email protected] ~]# systemctl enable nginx
时间: 2024-10-10 18:19:29

CentOS7添加Nginx为系统服务的相关文章

添加nginx为系统服务(service nginx start/stop/restart)

1.在/etc/init.d/目录下编写脚本,名为nginx 1 #!/bin/sh 2 # 3 # nginx - this script starts and stops the nginx daemon 4 # 5 # chkconfig: - 85 15 6 # description: Nginx is an HTTP(S) server, HTTP(S) reverse \ 7 # proxy and IMAP/POP3 proxy server 8 # processname: n

centos7 添加Nginx启动脚本

[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=/usr/local/nginx/logs/nginx.pid ExecStartPre=/usr/local/nginx/sbin/n

CentOS7.4 Nginx添加系统服务及开机自启动

Nginx安装好后,每次启动或者重启需要进入到/usr/local/nginx下操作,比较麻烦,于是把Nginx添加到系统服务中方便管理: # 添加nginx.service # vim /lib/systemd/system/nginx.service [Unit] Description=nginx service After=network.target [Service] Type=forking # 路径对应安装路径 ExecStart=/usr/local/nginx/sbin/ng

CentOS7 下 Nginx + Tomcat 实现 Session 共享

在之情的文章中搭建的 centos7 + tomcat + nginx 的环境的基础上, 使用 redis 实现 tomcat 的 session 共享的问题. 一 : 安装 Redis 安装 gcc: yum install -y gcc-c++ 使用 FTP 服务器上传安装包,解压上传的 redis 的包 tar -zxvf redis-3.0.0.tar.gz 进入解压目录 redis-3.0.0 执行 make PREFIX=/usr/local/redis install 把 redi

centos7 安装nginx和php7

centos7 安装nginx和php7 centos7系统安装php7会出现一些奇奇怪怪的问题,耽误时间,影响效率,这里推荐直接yum安装 1.在开始安装 Nginx 和 php7-fpm 之前,我们还学要先添加 EPEL 包的仓库源.使用如下命令:      yum -y install epel-release 然后我们还需要为 php7-fpm 添加另外一个仓库.互联网中有很个远程仓库提供了 PHP 7 系列包,我在这里使用的是 webtatic. 添加 PHP7-FPM webtati

Centos7下nginx+owncloud+php+mysql搭建个人私有云

Centos7.1 1053最小化安装lnmp通过yum安装,由于Centos7没有mysql的yum源,所以要自己安装mysql的yum源,但是安装上了,在我这yum安装只有几十K的速度,所以干脆去yum源里下载了mysql-server的rpm包,然后通过yum安装的rpm包,省了不少时间,lnmp的搭建这里就不再多说了,记着关闭selinux不然会提示File not found. 一.下载owncloud并解压的网站目录 [[email protected] ~]# axel https

Nextcloud 安装与优化 centos7 php7 nginx MariaDB

Nextcloud 安装与优化 (环境: centos7 php7 nginx MariaDB)前期玩了一段时间这个,但当时都是基于宝塔面板的,很多东西都不知道是为了什么,现在根据前期各位大神的作品,从头到尾做了一次.发现对于我们小白来说问题不在于安装,而在于优化,而大神们将优化说的比较少,所以我将自己的过程记录下:一.准备工作:1.查看系统版本并升级cat /etc/redhat-releaseyum update -y 2.将自带的epel.nginx.php全部卸载rpm -qa|grep

Centos7 keepalived +nginx

官网下载:keepalived-2.0.12.tarnginx-1.14.2.tar 主机A:192.168.0.110/24主机B:192.168.0.120/24 VRRP:192.168.0.200/24 用winscp把文件上传到 /usr/local/cd /usr/local/安装keepalived:(2)# cd /usr/local/(3)# tar -zxvf keepalived-2.0.12.tar.gz(4)# cd keepalived-2.0.12(5)# ./co

centos7下nginx,tomcaat开机启动(新)

一. 写在前面 centos7建议使用systemctl来管理服务的自启动,它能够满足之前service和chkconfig的功能 1.systemd有系统和用户区分:系统(/user/lib/systemd/system/).用户(/etc/lib/systemd/user/) 2.一般系统管理员手工创建的单元文件建议存放在/etc/systemd/system/目录下面 3.创建service文件 [Unit] Description=nginx - high performance web