目录
Nginx简介
Nginx安装
Nginx指令
停止nginx服务
安全退出
重新加载配置文件
查看nginx进程
Nginx简介
Nginx 是一个高性能的HTTP和反向代理web服务器,其特点是占有内存少,并发能力强,其并发能力在同类型的网页服务器中表现较好。
Nginx安装
安装gcc
yum install gcc-c++
安装 PCRE pcre-devel
yum install -y pcre pcre-devel
安装zlib
yum install -y zlib zlib-devel
安装OpenSSL
yum install -y openssl openssl-devel
手动进行下载
下载链接
下载完成后传输到Linux系统/root目录下并解压
[root@localhost /]# cd /root
[root@localhost ~]# dir
anaconda-ks.cfg -e mysql nohup.out projects store
-d logs nginx-1.24.0.tar.gz __par_compile_fail root -v
[root@localhost ~]# tar -zxvf nginx-1.24.0.tar.gz
在nginx目录下执行
[root@localhost nginx-1.24.0]# ./configure
[root@localhost nginx-1.24.0]# make
[root@localhost nginx-1.24.0]# make install
启动nginx
cd /usr/local/nginx/sbin/
[root@localhost sbin]# ./nginx
通过ip+端口进行访问
访问成功
Nginx指令
停止nginx服务
./nginx -s stop 停止nginx服务
[root@localhost sbin]# ./nginx -s stop
安全退出
./nginx -s quit 安全退出
[root@localhost sbin]# ./nginx -s quit
重新加载配置文件
./nginx -s reload 重新加载配置文件
[root@localhost sbin]# ./nginx -s reload
查看nginx进程
ps aux|grep nginx 查看nginx进程
[root@localhost sbin]# ps aux|grep nginx
root 70984 0.0 0.0 18664 388 ? Ss 18:51 0:00 nginx: master process ./nginx
nobody 70985 0.0 0.2 39552 4576 ? S 18:51 0:00 nginx: worker process
root 71731 0.0 0.0 221940 1184 pts/0 S+ 18:54 0:00 grep --color=auto nginx