詳解Linux下Nginx+Tomcat整合的安裝與配置的步驟
本篇文章主要介紹了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/jre/lib"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
[
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
"
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/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- centos下svn的安裝及配置詳細步驟CentOS
- vnc安裝步驟,vnc安裝步驟詳解VNC
- Linux下最新版MySQL 8.0的下載與安裝(詳細步驟)LinuxMySql
- DKhadoop環境安裝配置步驟詳解Hadoop
- Linux安裝jdk的詳細步驟。LinuxJDK
- Linux安裝jdk的詳細步驟LinuxJDK
- FreeBSD系統下安裝字型的步驟詳解
- vnc安裝步驟,4個在Linux下vnc的個安裝步驟VNCLinux
- ORACLE在linux下的安裝步驟OracleLinux
- IN2003下JDK的詳細安裝配置步驟JDK
- Linux下安裝jdk8步驟詳述LinuxJDK
- CentOS 7.4下安裝nginx的詳細步驟CentOSNginx
- Suse Linux 10中MySql安裝與配置步驟LinuxMySql
- linux下安裝docker步驟LinuxDocker
- Linux安裝JDK詳細步驟LinuxJDK
- Oracle9i的詳細安裝與解除安裝步驟(有圖解)Oracle圖解
- Mac系統安裝和配置tomcat步驟詳解MacTomcat
- vnc安裝步驟,如何在Linux(CentOS 7)下vnc安裝步驟VNCLinuxCentOS
- MySQL的安裝步驟(詳細)MySql
- Linux 下安裝 LR Generator 步驟Linux
- vnc安裝步驟,4個vnc安裝步驟實現vnc與Linux的連線VNCLinux
- Linux下安裝Oracle的一般步驟LinuxOracle
- hadoop的Linux下簡單安裝步驟HadoopLinux
- AIX下CDE的安裝步驟AI
- linux下安裝redis圖文詳細步驟鶯瞵LinuxRedis
- CentOS 6.5下Redis安裝詳細步驟CentOSRedis
- Linux下jdk8安裝步驟LinuxJDK
- linux環境下安裝nginx步驟LinuxNginx
- Linux 安裝步驟Linux
- linux下JNI開發步驟詳解Linux
- windows下解除安裝oracle的步驟WindowsOracle
- 安裝Linux14.04詳細步驟Linux
- linux安裝mysql的步驟和方法詳細說明LinuxMySql
- WAS與IHS整合的安裝與配置
- linux下安裝redis 單節點安裝操作步驟LinuxRedis
- 【安裝】Windows下Oracle安裝圖解----oracle-win-64-11g 詳細安裝步驟WindowsOracle圖解
- centos7 (阿里雲、linux) 單機spark的安裝與配置詳解(jdk安裝與配置,scala安裝與配置,hadoop安裝與配置,spark安裝與配置)CentOS阿里LinuxSparkJDKHadoop
- MySql 5.7.14 解壓版安裝步驟詳解MySql