1.start cd usr/local/nginx/sbin ./nginx 2.restart kill -HUP PID #主进程号或进程号文件路径 #或者使用 cd /usr/local/nginx/sbin ./nginx -s reload 3.shutdown #查询nginx PID ps -ef | grep nginx kill -QUIT PID #从容停止 kill -TERM PID #快速停止 kill - PID #强制停止 #若nginx.conf配置了pid文件…
1.编写脚本,名为nginx #!/bin/sh # # nginx - this script starts and stops the nginx daemon # # chkconfig: - # description: Nginx is an HTTP(S) server, HTTP(S) reverse \ # proxy and IMAP/POP3 proxy server # processname: nginx # config: /etc/nginx/nginx.conf #…
vim /etc/init.d/nginx 1 #!/bin/bash  2 # nginx Startup script for the Nginx HTTP Server  3 # it is v.0.0.2 version.  4 # chkconfig: 2345 30 30  5 # description: Nginx is a high-performance web and proxy server.  6 #              It has a lot of featu…
1.在/etc/init.d/目录下编写脚本,名为nginx #!/bin/sh # # nginx - this script starts and stops the nginx daemon # # chkconfig: - # description: Nginx is an HTTP(S) server, HTTP(S) reverse \ # proxy and IMAP/POP3 proxy server # processname: nginx # config: /etc/ng…
centos 7上是用Systemd进行系统初始化的,Systemd 是 Linux 系统中最新的初始化系统(init),它主要的设计目标是克服 sysvinit 固有的缺点,提高系统的启动速度.关于Systemd的详情介绍在这里. Systemd服务文件以.service结尾,比如现在要建立nginx为开机启动,如果用yum install命令安装的,yum命令会自动创建nginx.service文件,直接用命令 systemcel enable nginx.service 设置开机启动即可.…
1.系统环境,必要知识 #cat /etc/redhat-release CentOS Linux release (Core) #uname -r -.el7.x86_64 暂时关闭防护墙,关闭selinux: #systemctl stop firewalld.service #setenforce #getenforce Permissive 准备知识: django:一个基于python的开源web框架. uWSGI:一个基于自有的uwsgi协议,wsgi协议和http服务协议的web网…
Nginx的英文官方网站是http://nginx.org,在这里可以查看Nginx的各个软件版本信息.Nginx软件有三种版本:稳定版.开发版和历史稳定版.开发版更新较快,包含最新的功能和bug的修复,但同时也可能会遇到新的bug,开发版的更新一旦稳定下来,就会被纳入稳定版中.但是,有些新功能不会被加入到旧的稳定版中去.稳定版本的更新较慢,但是软件bug也会较少,可以作为企业生产环境的首选,因此通常建议选择使用稳定版.当然,在实际工作中,选择稳定版时,尽量避免使用最新的版本,选择比已出来的最新…
之前装的是1.6.3版本,准备升级到1.10.2版本. 1.下载nginx1.10.2 wget http://nginx.org/download/nginx-1.10.2.tar.gz 2.解压缩 tar xvf nginx-1.10.2.tar.gz 3.查看当前nginx的模块配置 nginx -V nginx version: nginx/1.6.3built by gcc 4.8.5 20150623 (Red Hat 4.8.5-4) (GCC) TLS SNI support e…
Django + Gunicorn + Nginx 部署服务器 获取腾讯云 root权限 本人的服务器使用的是腾讯云,腾讯云默认是没有开放 root 用户的,我们来创建 root 用户. 创建 root 账号并设置密码. sudo passwd root 设置 root 账户登录需要密码. sudo vim /etc/ssh/sshd_config 修改 without-password 为 yes. PermitRootLogin yes 重启 ssh 服务. sudo service ssh…
前置博客(博客中使用的项目来自于此): [Docker] .Net Core 3.1 webapi 集成EF Code First,使用MySql进行业务操作 .配置swagger (三) 环境:.Net Core 3.1 , Centos7.6 工具:连接工具MobaXterm,阿里云服务器一台 1.安装微软签名,不安装不能使用net. rpm --import https://packages.microsoft.com/keys/microsoft.asc 2.安装.net环境,也可以单独…