Centos安裝nginx

来源:https://www.cnblogs.com/xieshuang/archive/2018/02/27/8479051.html
-Advertisement-
Play Games

`Centos7+` 64bit; 1.7.12 1.安裝依賴 yum y install gcc gcc c++ wget net tools pcre devel zlib devel openssl devel 2.下載並解壓安裝包 進入常用文件夾 cd /usr/local/src/ 下載源 ...


使用的是騰訊雲主機,選擇的鏡像如下:
Centos7+ 64bit;
nginx 1.7.12

1.安裝依賴

yum -y install gcc gcc-c++ wget net-tools pcre-devel zlib-devel openssl-devel

2.下載並解壓安裝包

#進入常用文件夾
cd /usr/local/src/

#下載源碼
wget http://nginx.org/download/nginx-1.7.12.tar.gz

#解壓
tar zxvf nginx-1.7.12.tar.gz

#進入目錄
cd nginx-1.7.12

3.安裝

#配置
./configure \
--prefix=/usr/local/nginx \
--with-threads \
--with-file-aio \
--with-ipv6 \
--with-pcre \
--with-http_ssl_module \
--with-http_spdy_module \
--with-http_realip_module \
--with-http_addition_module \
--with-http_sub_module \
--with-http_dav_module \
--with-http_flv_module \
--with-http_mp4_module \
--with-http_gunzip_module \
--with-http_gzip_static_module \
--with-http_auth_request_module \
--with-http_random_index_module \
--with-http_secure_link_module \
--with-http_degradation_module \
--with-http_stub_status_module \
--with-mail \
--with-mail_ssl_module

#編輯
make 
#查看是否有錯誤
echo $?  //顯示0
#安裝
make install

#編寫nginx啟動腳本,並加入系統服務
vi /etc/init.d/nginx

#寫入以下內容
#!/bin/bash
# chkconfig: - 30 21
# description: http service.
# Source Function Library
. /etc/init.d/functions
# Nginx Settings

NGINX_SBIN="/usr/local/nginx/sbin/nginx"
NGINX_CONF="/usr/local/nginx/conf/nginx.conf"
NGINX_PID="/usr/local/nginx/logs/nginx.pid"
RETVAL=0
prog="Nginx"

start() {
        echo -n $"Starting $prog: "
        mkdir -p /dev/shm/nginx_temp
        daemon $NGINX_SBIN -c $NGINX_CONF
        RETVAL=$?
        echo
        return $RETVAL
}

stop() {
        echo -n $"Stopping $prog: "
        killproc -p $NGINX_PID $NGINX_SBIN -TERM
        rm -rf /dev/shm/nginx_temp
        RETVAL=$?
        echo
        return $RETVAL
}

reload(){
        echo -n $"Reloading $prog: "
        killproc -p $NGINX_PID $NGINX_SBIN -HUP
        RETVAL=$?
        echo
        return $RETVAL
}

restart(){
        stop
        start
}

configtest(){
    $NGINX_SBIN -c $NGINX_CONF -t
    return 0
}

case "$1" in
  start)
        start
        ;;
  stop)
        stop
        ;;
  reload)
        reload
        ;;
  restart)
        restart
        ;;
  configtest)
        configtest
        ;;
  *)
        echo $"Usage: $0 {start|stop|reload|restart|configtest}"
        RETVAL=1
esac

exit $RETVAL


#保存退出 接下來添加許可權
chmod 755 /etc/init.d/nginx
#添加nginx到服務
chkconfig --add nginx
#加到開機自動啟動
chkconfig nginx on

4.配置

#首先把原來的配置文件清空
> /usr/local/nginx/conf/nginx.conf
#編輯
vi /usr/local/nginx/conf/nginx.conf

#加入如下內容
user nobody nobody;
worker_processes 2;
error_log /usr/local/nginx/logs/nginx_error.log crit;
pid /usr/local/nginx/logs/nginx.pid;
worker_rlimit_nofile 51200;

events
{
    use epoll;
    worker_connections 6000;
}

http
{
    include mime.types;
    default_type application/octet-stream;
    server_names_hash_bucket_size 3526;
    server_names_hash_max_size 4096;
    log_format combined_realip '$remote_addr $http_x_forwarded_for [$time_local]'
    '$host "$request_uri" $status'
    '"$http_referer" "$http_user_agent"';
    sendfile on;
    tcp_nopush on;
    keepalive_timeout 30;
    client_header_timeout 3m;
    client_body_timeout 3m;
    send_timeout 3m;
    connection_pool_size 256;
    client_header_buffer_size 1k;
    large_client_header_buffers 8 4k;
    request_pool_size 4k;
    output_buffers 4 32k;
    postpone_output 1460;
    client_max_body_size 10m;
    client_body_buffer_size 256k;
    client_body_temp_path /usr/local/nginx/client_body_temp;
    proxy_temp_path /usr/local/nginx/proxy_temp;
    fastcgi_temp_path /usr/local/nginx/fastcgi_temp;
    fastcgi_intercept_errors on;
    tcp_nodelay on;
    gzip on;
    gzip_min_length 1k;
    gzip_buffers 4 8k;
    gzip_comp_level 5;
    gzip_http_version 1.1;
    gzip_types text/plain application/x-javascript text/css text/htm application/xml;


server
        {
            listen 80 default;
            server_name _;
            return 502;
        }
        include /usr/local/nginx/conf/host/*.conf;


}  
這裡做了ngnix反向代理,ngnix轉發動態請求到tomcat
 server
    {
        listen 80 default;
        server_name 127.0.0.1:8080;
        charset utf-8;
        access_log logs/host.access.log;
        
        location / {
            proxy_pass http://127.0.0.1:8080;
        }
    }
    include /usr/local/nginx/conf/host/*.conf;
}

#檢驗一下配置文件是否有錯誤存在
[root@VM_177_101_centos conf]# /usr/local/nginx/sbin/nginx  -t
nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok
nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful

#啟動nginx
service nginx start

至此,nginx已經安裝成功,再啟用tomcat,通過ip即可訪問到tomcat歡迎頁面。

參考文章


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 兩步:1.註冊GridView的CustomDrawFooterCell事件2.在事件響應中,根據條件修改e.Appearance.ForeColor例子如下: 效果: 不知道為什麼設置e.Appearance.BackColor無效(而在非統計行中有效),知道的大俠麻煩告知。 ...
  • 一.單一職責原則 就一個類而言,應該僅有一個引起它變化的原因.如果你能想到多於一個的動機去改變一個類,那麼這個類就具有多於一個的職責. 二.開放-封閉原則 對於更改是封閉的,對於擴展是開放的.面對需求,對程式的改動是通過增加代碼來實現的,而不是更改現有代碼,從而保持相對的穩定.如何做到呢?預測最有可 ...
  • Debug版本:通常稱為調試版本,它包含調試信息,並且不作任何優化,便於程式員調試程式。 Release版本:稱為發佈版本,它往往是進行了各種優化,使得程式在代碼大小和運行速度上都是最優的,以便用戶很好地使用。 實際上,Debug版本和 Release 並沒有本質的界限,他們只是一組編譯選項的集合, ...
  • 上一篇中,老周給大伙伴們扯了有關 ASP.NET Core 中異常處理的簡單方法。按照老周的優良作風,我們應該順著這個思路繼續挖掘。 本文老周就不自量力地介紹一下如何使用 MVC Filter 來處理異常。MVC 模型(當然適用於 Razor Page 、Web API 模型)可以用一系列的 Fil ...
  • //簡單工廠,適合具體實現不同,例如根據配置文件實例化不同的資料庫,不同的語言版本. #region 定義基類(屬性和功能) public class Operation { private double numberA = 0; public double NumberA { get { retu ...
  • 簡述 在公司內部搭建內部視頻學習網站,經過對比選擇了wordpress進行站點搭建。但是在上傳視頻遭遇到了各種問題,特將此處理過程進行記錄。 原因排查 1.上傳一個十幾兆mp4的文件上傳進度到達百分之百,會媒體提示http錯誤 2.剛開始懷疑是PHP、Nginx的上傳大小限制了。但是查看PHP、Ng ...
  • 為了做集群測試,在每台機器上裝了3個tomcat,每次發佈項目的時候都要反覆敲一些命令,重啟tomcat之前先檢查tomcat進程有沒有停掉,沒有還要手動kill該進程。 發佈次數多了,操作就比較繁瑣了,索性寫個腳本一鍵發佈,省時省力^_^。 把deploy.sh和restart.sh分別拷貝到3個 ...
  • 刪除文件需要用到rm命令,但刪除目錄需要添加兩個參數: -r 向下遞歸,不管多少級目錄都刪除 -f 強行刪除,不做提示 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...