詳解Linux下Nginx+Tomcat整合的安裝與配置的步驟

03ngnntds發表於2019-02-28

本篇文章主要介紹了Linux下Nginx+Tomcat整合的安裝與配置,具有一定的參考價值,有興趣的可以瞭解一下。
一、安裝Tomcat和JDK

1、上傳apache-tomcat-6.0.18.tar.gz和jdk-6u12-linux-i586.bin至/usr/local

2、執行如下命令安裝tomcat:

#cd /usr/local #tar zxvf apache-tomcat-6.0.18.tar.gz
解壓完成後將apache-tomcat-6.0.18重新命名為tomcat

3、執行如下命令安裝JDK:

#./jdk-6u12-linux-i586.bin
4、配置環境變數:

編輯/etc下的profile檔案,加上如下內容:

JAVA_HOME="/usr/local/jdk1.6.0_12"CLASS_PATH=“ J A V A H O M E / l i b : JAVA_HOME/lib: J A V A H O M E / l i b : JAVA_HOME/jre/lib"PATH=”.: P A T H : PATH: P A T H : JAVA_HOME/bin " CATALINA_HOME="/usr/local/tomcat"export JAVA_HOME CATALINA_HOME
5、啟動tomcat並輸入,如果看到貓的頁面即tomcat和jdk安裝成功

6、新建檔案目錄/home/www為網站存放目錄,設定server.xml檔案,在Host name=”localhost”處將appBase=的指向路徑改為/home/www/web

7、建立index.jsp至/home/www/web/ROOT,內容為:“My web!”

二、安裝Nginx

1、上傳nginx-0.7.63.tar.gz至/usr/local

2、執行如下命令解壓nginx:

#cd /usr/local #tar zxvf nginx-0.7.63.tar.gz
3、編譯安裝nginx

#cd nginx-0.7.63#./configure --with-http_stub_status_module --with-http_ssl_module #啟動server狀態頁和https模組
執行完後會提示一個錯誤,說缺少PCRE library 這個是HTTP Rewrite 模組,也即是url靜態化的包

可上傳pcre-7.9.tar.gz,輸入如下命令安裝:

#tar zxvf pcre-7.9.tar.gz #cd pcre-7.9#./configure #make #make install
安裝pcre成功後,繼續安裝nginx

#cd nginx-0.7.63#./configure #make #make install
4、nginx安裝成功後的安裝目錄為/usr/local/nginx

在conf資料夾中新建proxy.conf,用於配置一些代理引數,內容如下:

#!nginx (-) # proxy.conf proxy_redirect off; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; #獲取真實ip #proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; #獲取代理者的真實ip client_max_body_size 10m; client_body_buffer_size 128k; proxy_connect_timeout 90; proxy_send_timeout 90; proxy_read_timeout 90; proxy_buffer_size 4k; proxy_buffers 4 32k; proxy_busy_buffers_size 64k; proxy_temp_file_write_size 64k;
編輯安裝目錄下conf資料夾中的nginx.conf,輸入如下內容

#執行nginx所在的使用者名稱和使用者組 #user www www; #啟動程式數 worker_processes 8; #全域性錯誤日誌及PID檔案
error_log /usr/local/nginx/logs/nginx_error.log crit; pid /usr/local/nginx/nginx.pid; #Specifies the value for maximum file descriptors that can be opened by this process. worker_rlimit_nofile 65535; #工作模式及連線數上限 events { use epoll; worker_connections 65535; } #設定http伺服器,利用它的反向代理功能提供負載均衡支援 http { #設定mime型別 include mime.types; default_type application/octet-stream; include /usr/local/nginx/conf/proxy.conf; #charset gb2312; #設定請求緩衝 server_names_hash_bucket_size 128; client_header_buffer_size 32k; large_client_header_buffers 4 32k; client_max_body_size 8m; sendfile on; tcp_nopush on; keepalive_timeout 60; tcp_nodelay on; # fastcgi_connect_timeout 300; # fastcgi_send_timeout 300; # fastcgi_read_timeout 300; # fastcgi_buffer_size 64k; # fastcgi_buffers 4 64k; # fastcgi_busy_buffers_size 128k; # fastcgi_temp_file_write_size 128k; # gzip on; # gzip_min_length 1k; # gzip_buffers 4 16k; # gzip_http_version 1.0; # gzip_comp_level 2; # gzip_types text/plain application/x-javascript text/css application/xml; # gzip_vary on; #limit_zone crawler  KaTeX parse error: Expected 'EOF', got '#' at position 25: …mote_addr 10m; #̲##禁止透過ip訪問站點 se…  #所有jsp的頁面均交由tomcat處理 { index index.jsp; proxy_pass  ;#轉向tomcat處理 } location ~ . .(gif|jpg|jpeg|png|bmp|swf)$ #設定訪問靜態檔案直接讀取不經過tomcat { expires 30d; } location ~ . .(js|css)?$ { expires 1h; } #定義訪問日誌的寫入格式 log_format access '$remote_addr -  r e m o t e u s e r [ remote_user [ r e m o t e u s e r [ time_local] “ KaTeX parse error: Double superscript at position 12: request" ' '̲ status  b o d y b y t e s s e n t " body_bytes_sent " b o d y b y t e s s e n t " http_referer” ’ ‘"$http_user_agent" $http_x_forwarded_for’; access_log /usr/local/nginx/logs/localhost.log access;#設定訪問日誌的存放路徑 }

}


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69911024/viewspace-2637226/,如需轉載,請註明出處,否則將追究法律責任。

相關文章