nginx安装与部署

news/2024/8/25 17:13:47

1:安装工具包 wget、vim和gcc

yum install -y wget 
yum install -y vim-enhanced 
yum install -y make cmake gcc gcc-c++

 

2:下载nginx安装包

wget http://nginx.org/download/nginx-1.6.2.tar.gz3:安装依赖包
yum install -y pcre pcre-devel
yum install -y zlib zlib-devel
yum install -y openssl openssl-devel

4:解压nginx-1.6.2.tar.gz到/usr/local/目录下

tar -zxvf nginx-1.6.2.tar.gz -C /usr/local/

 

5:进行configure配置
进入nginx-1.6.2目录然后在执行./configure命令

[root@MiWiFi-R3-srv nginx-1.6.2]# ./configure --prefix=/usr/local/nginx

 

6:编译安装

[root@MiWiFi-R3-srv nginx-1.6.2]# make && make install

 

7:启动Nginx,启动完之后检查nginx是否已经正常启动,看到如下信息说明正常启动

[root@MiWiFi-R3-srv nginx-1.6.2]# /usr/local/nginx/sbin/nginx
[root@MiWiFi-R3-srv nginx-1.6.2]# ps -ef | grep nginx
root 24956 1 0 19:41 ? 00:00:00 nginx: master process /usr/local/nginx/sbin/nginx
nobody 24957 24956 0 19:41 ? 00:00:00 nginx: worker process
root 24959 10533 0 19:41 pts/0 00:00:00 grep --color=auto nginx
[root@MiWiFi-R3-srv nginx-1.6.2]#

  

如果要关闭nginx,我们可以使用如下命令:

[root@MiWiFi-R3-srv nginx-1.6.2]# /usr/local/nginx/sbin/nginx -s stop

 

如果想要重新热启动nginx,则使用如下命令:

[root@MiWiFi-R3-srv nginx-1.6.2]# /usr/local/nginx/sbin/nginx -s reload

 


8:配置防火墙,nginx默认的端口是80

[root@MiWiFi-R3-srv nginx-1.6.2]# firewall-cmd --zone=public --add-port=80/tcp --permanent
success
[root@MiWiFi-R3-srv nginx-1.6.2]# firewall-cmd --reload
success
[root@MiWiFi-R3-srv nginx-1.6.2]#

 

9:测试nginx
通过浏览器访问nginx欢迎页,在地址栏输入:http://192.168.31.241/(80端口可以不用输)或http://192.168.156.11:80/,如下图所示。

 

10:学习nginx配置

在nginx目录下进入conf目录,该目录下有个nginx.conf文件,这是nginx最重要的配置文件

[root@MiWiFi-R3-srv conf]# vim /usr/local/nginx/conf/nginx.conf

nginx.conf文件的全部内容如下(有注释版):

#user  nobody;  

#开启进程数 <=CPU数   
worker_processes  1;  

#错误日志保存位置  
#error_log  logs/error.log;  
#error_log  logs/error.log  notice;  
#error_log  logs/error.log  info;  

#进程号保存文件  
#pid        logs/nginx.pid;  

#每个进程最大连接数(最大连接=连接数x进程数)每个worker允许同时产生多少个链接,默认1024  
events {  
    worker_connections  1024;  
}  


http {  
    #文件扩展名与文件类型映射表  
    include       mime.types;  
    #默认文件类型  
    default_type  application/octet-stream;  

    #日志文件输出格式 这个位置相于全局设置  
    #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  logs/access.log  main;  

    #打开发送文件  
    sendfile        on;  
    #tcp_nopush     on;  

    #keepalive_timeout  0;  
    #连接超时时间  
    keepalive_timeout  65;  

    #打开gzip压缩  
    #gzip  on;  

    server {  
        #监听端口,默认是80端口  
        listen       80;  
        #监听域名  
        server_name  localhost;  

        #charset koi8-r;  

        #nginx访问日志放在logs/host.access.log下,并且使用main格式(还可以自定义格式)  
        #access_log  logs/host.access.log  main;  

        #如果没有location更明确的匹配访问路径的话,访问请求都会被该location处理。  
        location / {  
            #root指定nginx的根目录为/usr/local/nginx/html  
            root   html;  
            #默认访问文件,欢迎页先去html目录下找index.html,如果找不到再去找index.htm  
            index  index.html index.htm;  
        }  

        #error_page  404              /404.html;  
        # redirect server error pages to the static page /50x.html  
        #  

        #错误页面及其返回地址,错误码为500、502503、504都会返回50.html错误页面。  
        error_page   500 502 503 504  /50x.html;  
        #location后面是"="的话,说明是精确匹配  
        location = /50x.html {  
            root   html;  
        }  

        # proxy the PHP scripts to Apache listening on 127.0.0.1:80  
        #  
        #location ~ \.php$ {  
        #    proxy_pass   http://127.0.0.1;  
        #}  

        # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000  
        #  
        #location ~ \.php$ {  
        #    root           html;  
        #    fastcgi_pass   127.0.0.1:9000;  
        #    fastcgi_index  index.php;  
        #    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;  
        #    include        fastcgi_params;  
        #}  

        # deny access to .htaccess files, if Apache's document root  
        # concurs with nginx's one  
        #  
        #location ~ /\.ht {  
        #    deny  all;  
        #}  
    }  


    # another virtual host using mix of IP-, name-, and port-based configuration  
    #  
    #server {  
    #    listen       8000;  
    #    listen       somename:8080;  
    #    server_name  somename  alias  another.alias;  

    #    location / {  
    #        root   html;  
    #        index  index.html index.htm;  
    #    }  
    #}  


    # HTTPS server  
    #  
    #server {  
    #    listen       443 ssl;  
    #    server_name  localhost;  

    #    ssl_certificate      cert.pem;  
    #    ssl_certificate_key  cert.key;  

    #    ssl_session_cache    shared:SSL:1m;  
    #    ssl_session_timeout  5m;  

    #    ssl_ciphers  HIGH:!aNULL:!MD5;  
    #    ssl_prefer_server_ciphers  on;  

    #    location / {  
    #        root   html;  
    #        index  index.html index.htm;  
    #    }  
    #}  

}  

配置文件里可以添加多个server,server监听的端口不同,可以根据需要让nginx代理多个端口,当访问某个端口的时候,指定去做某些事情。我这里添加了一个server,这个server监听的端口为1234,server_name我指定为了test.com,也就是域名为test.com,当访问1234端口时会自动导航到/usr/local/nginx/tester/tester111.html页面,如下所示

#user  nobody;  

#开启进程数 <=CPU数   
worker_processes  1;  

#错误日志保存位置  
#error_log  logs/error.log;  
#error_log  logs/error.log  notice;  
#error_log  logs/error.log  info;  

#进程号保存文件  
#pid        logs/nginx.pid;  

#每个进程最大连接数(最大连接=连接数x进程数)每个worker允许同时产生多少个链接,默认1024  
events {  
    worker_connections  1024;  
}  


http {  
    #文件扩展名与文件类型映射表  
    include       mime.types;  
    #默认文件类型  
    default_type  application/octet-stream;  

    #日志文件输出格式 这个位置相于全局设置  
    #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  logs/access.log  main;  

    #打开发送文件  
    sendfile        on;  
    #tcp_nopush     on;  

    #keepalive_timeout  0;  
    #连接超时时间  
    keepalive_timeout  65;  

    #打开gzip压缩  
    #gzip  on;  

    server {  
        #监听端口  
        listen       80;  
        #监听域名  
        server_name  localhost;  

        #charset koi8-r;  

        #nginx访问日志放在logs/host.access.log下,并且使用main格式(还可以自定义格式)  
        #access_log  logs/host.access.log  main;  

        #如果没有location更明确的匹配访问路径的话,访问请求都会被该location处理。  
        location / {  
            #root指定nginx的根目录为/usr/local/nginx/html  
            root   html;  
            #默认访问文件,欢迎页先去html目录下找index.html,如果找不到再去找index.htm  
            index  index.html index.htm;  
        }  

        #error_page  404              /404.html;  
        # redirect server error pages to the static page /50x.html  
        #  

        #错误页面及其返回地址,错误码为500、502503、504都会返回50.html错误页面。  
        error_page   500 502 503 504  /50x.html;  
        #location后面是"="的话,说明是精确匹配  
        location = /50x.html {  
            root   html;  
        }  

        server {  
            listen 1234;  
            server_name test.com;  
            location / {  
                #正则表达式匹配uri方式:在/usr/local/nginx/tester下 建立一个tester111.html 然后使用正则匹配  
                root tester;  
                index tester111.html;  
            }  
        }  
    }  
}  

 

转载于:https://www.cnblogs.com/heshouhui/p/9634294.html


http://www.niftyadmin.cn/n/2145632.html

相关文章

linux运行速度慢怎么解决,Linux运行速度太慢的关键原因全都在这了

导读我们在搞清楚如何加速Linux计算机之前&#xff0c;需要知道哪些方法可以帮助我们找到引导时启动的服务、以更高或更低优先级运行的进程、CPU运行状况、内存是否塞满了过多数据&#xff0c;还要检查交换内存区是否已满。最后&#xff0c;我们还要检查硬盘是否运行正常。可能…

jdbc中的数据库连接池

1.传统连接的问题&#xff1a; 如何解决传统开发中的数据库连接问题:使用数据库连接池 2.使用数据库连接池的好处 资源重用 由于数据库连接得以重用&#xff0c;避免了频繁创建&#xff0c;释放连接引起的大量性能开销。在减少系统消耗 的基础上&#xff0c;另一方面也增加了…

用pm2管理hexo进程

2019独角兽企业重金招聘Python工程师标准>>> 一、在博客根目录下加如下js //run const { exec } require(child_process) exec(hexo server -p 80 & ,(error, stdout, stderr) > {if(error){console.log(exec error: ${error})return}console.log(stdout: $…

linux分配权限根据附加组吗,Linux用户、组和权限管理(一)

Linux是一个Multi-tasks(多任务)、 Multi-Users(多用户)的系统每一个登陆者或使用者都有用户标识、密码(所谓3A)所谓的3A&#xff1a;Authentication(验证机制)Authorization(授权机制)Audition(审计)组的概念&#xff1a;用户组&#xff0c;用户容器&#xff1b;是为了便于用户…

MVVM模式与第一个Vue程序

1.什么是MVVM模式&#xff1f; MVVM&#xff08;Model-View-ViewModel&#xff09;是一种软件架构设计模式&#xff0c;由微软 WPF&#xff08;用于替代 WinForm&#xff0c;以 前就是用这个技术开发桌面应用程序的&#xff09;和 Silverlight&#xff08;类似于 Java Applet&…

azkaban group分组,权限

翻译自&#xff1a;https://azkaban.readthedocs.io/en/latest/userManager.html?highlightgroup 1.job project&#xff0c;名为"e",分享给某人看&#xff0c;下图位置中添加那个人账号即可(可在lmk账号登录&#xff0c;并在 projects>>Personal>>看到…

linux配置文件前面有分号,Linux如何删除以分号开头的文件

Linux删除以破折号开头的文件Windows在批处理文件来删除隐藏属性昨天去打印店打印的材料.结果中毒.所有的文件被隐藏.生成一个一堆快捷键.回来后.我很容易地把它放入Linux机,我想删除这些文件怪. 下面是该过程,遇到的问题. 1.您无法删除-该文件的开头 最初 ...Linux Centos 删除…

jdbc中PreparedStatment通用增删改查

1.DBUtil package loey.DBUtil;import org.junit.Test;import java.io.IOException; import java.io.InputStream; import java.sql.*; import java.util.Properties;/*** JDBC工具类&#xff0c;简化JDBC编程*/ public class DBUtil {/*** 工具类中的构造方法是私有的* 因为工…