您的位置:首页 > 运维架构 > Nginx

centos7.6安装nginx

2020-07-13 04:38 239 查看

基本的nginx的安装和简单配置,并不包括其他

  1. 查看是否被安装
[root@iZhp3 etc]# which nginx
/usr/sbin/nginx #值为空表示没有被安装
  1. 安装nginx
[root@iZhp3 etc]# yum install -y nginx
  1. 查看nginx安装后文件分布的目录
[root@iZhp3 etc]# whereis nginx
nginx:
/usr/sbin/nginx  #执行目录
/usr/lib64/nginx  #模块目录
/etc/nginx  #配置目录
/usr/share/nginx  #站点
/usr/share/man/man8/nginx.8.gz
/usr/share/man/man3/nginx.3pm.gz
  1. 注册为开启自启动服务以及开启关闭等,参见vsftpd安装一节
  2. 查看端口占用及软件运行情况
[root@iZhp3bl var]# netstat -antp|grep :80
tcp        0      0 0.0.0.0:80              0.0.0.0:*               LISTEN      13294/nginx: master
tcp        0      0 172.24.171.159:80       61.51.81.122:14270      TIME_WAIT   -
tcp        0      0 172.24.171.159:33400    100.100.30.25:80        ESTABLISHED 1244/AliYunDun
tcp        0      0 172.24.171.159:80       61.51.81.122:16133      TIME_WAIT   -
tcp6       0      0 :::80                   :::*                    LISTEN      13294/nginx: master
[root@iZhp3b var]# ps aux|grep nginx
root     13294  0.0  0.1 120900  2100 ?        Ss   15:30   0:00 nginx: master process /usr/sbin/nginx
nginx    13296  0.0  0.1 121284  3568 ?        S    15:30   0:00 nginx: worker process
root     13351  0.0  0.0 112708   988 pts/0    R+   15:33   0:00 grep --color=auto nginx
  1. 进程关闭
[root@i var]# killall -9 nginx
[root@iZh var]# kill -9 pid1 and kill -9 pid1  #pid进程
  1. 查看版本
[root@iZhp var]# nginx -v
nginx version: nginx/1.16.1
  1. 基本配置 nginx.conf文件
[root@iZhp nginx]# cat nginx.conf
# For more information on configuration, see:
#   * Official English Documentation: http://nginx.org/en/docs/
#   * Official Russian Documentation: http://nginx.org/ru/docs/

user nginx;
worker_processes auto;
error_log /var/log/nginx/error.log;
pid /run/nginx.pid;

# Load dynamic modules. See /usr/share/doc/nginx/README.dynamic.
include /usr/share/nginx/modules/*.conf;

events {
worker_connections 1024;
}

http {
log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';

access_log  /var/log/nginx/access.log  main;

sendfile            on;
tcp_nopush          on;
tcp_nodelay         on;
keepalive_timeout   65;
types_hash_max_size 2048;

include             /etc/nginx/mime.types;
default_type        application/octet-stream;

# Load modular configuration files from the /etc/nginx/conf.d directory.
# See http://nginx.org/en/docs/ngx_core_module.html#include
# for more information.
include /etc/nginx/conf.d/*.conf;
#一个server表示一个站点,
#如果有多个站点则创建多个server节点即可,
server {
#监听端口
listen       80 default_server;
listen       [::]:80 default_server;
#服务地址或者域名
server_name  _;
#站点根目录
root         /usr/share/nginx/html;

# Load configuration files for the default server block.
include /etc/nginx/default.d/*.conf;
#过滤器,对url地址进行过滤
location / {
#默认主页
index index.html
}

error_page 404 /404.html;
location = /40x.html {
}

error_page 500 502 503 504 /50x.html;
location = /50x.html {
}
}

# Settings for a TLS enabled server.
#
#    server {
#        listen       443 ssl http2 default_server;
#        listen       [::]:443 ssl http2 default_server;
#        server_name  _;
#        root         /usr/share/nginx/html;
#
#        ssl_certificate "/etc/pki/nginx/server.crt";
#        ssl_certificate_key "/etc/pki/nginx/private/server.key";
#        ssl_session_cache shared:SSL:1m;
#        ssl_session_timeout  10m;
#        ssl_ciphers HIGH:!aNULL:!MD5;
#        ssl_prefer_server_ciphers on;
#
#        # Load configuration files for the default server block.
#        include /etc/nginx/default.d/*.conf;
#
#        location / {
#        }
#
#        error_page 404 /404.html;
#            location = /40x.html {
#        }
#
#        error_page 500 502 503 504 /50x.html;
#            location = /50x.html {
#        }
#    }

}

[root@iZh nginx]#
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: