您好,登錄后才能下訂單哦!
這篇文章主要講解了“Linux下Nginx+Tomcat整合的安裝與配置步驟”,文中的講解內(nèi)容簡單清晰,易于學(xué)習(xí)與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“Linux下Nginx+Tomcat整合的安裝與配置步驟”吧!
一、安裝Tomcat和JDK
1、上傳apache-tomcat-6.0.18.tar.gz和jdk-6u12-linux-i586.bin至/usr/local
2、執(zhí)行如下命令安裝tomcat:
#cd /usr/local #tar zxvf apache-tomcat-6.0.18.tar.gz
解壓完成后將apache-tomcat-6.0.18重命名為tomcat
3、執(zhí)行如下命令安裝JDK:
#./jdk-6u12-linux-i586.bin
4、配置環(huán)境變量:
編輯/etc下的profile文件,加上如下內(nèi)容:
JAVA_HOME="/usr/local/jdk1.6.0_12"CLASS_PATH=“JAVAHOME/lib:JAVA_HOME/lib:JAVAHOME/lib:JAVA_HOME/jre/lib"PATH=”.:PATH:PATH:PATH:JAVA_HOME/bin " CATALINA_HOME="/usr/local/tomcat"export JAVA_HOME CATALINA_HOME
5、啟動(dòng)tomcat并輸入http://localhost:8080,如果看到貓的頁面即tomcat和jdk安裝成功
6、新建文件目錄/home/www為網(wǎng)站存放目錄,設(shè)置server.xml文件,在Host name=”localhost”處將appBase=的指向路徑改為/home/www/web
7、創(chuàng)建index.jsp至/home/www/web/ROOT,內(nèi)容為:“My web!”
二、安裝Nginx
1、上傳nginx-0.7.63.tar.gz至/usr/local
2、執(zhí)行如下命令解壓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 #啟動(dòng)server狀態(tài)頁和https模塊
執(zhí)行完后會提示一個(gè)錯(cuò)誤,說缺少PCRE library 這個(gè)是HTTP Rewrite 模塊,也即是url靜態(tài)化的包
可上傳pcre-7.9.tar.gz,輸入如下命令安裝:
#tar zxvf pcre-7.9.tar.gz #cd pcre-7.9#./configure #make #make install
安裝pcre成功后,繼續(xù)安裝nginx
#cd nginx-0.7.63#./configure #make #make install
4、nginx安裝成功后的安裝目錄為/usr/local/nginx
在conf文件夾中新建proxy.conf,用于配置一些代理參數(shù),內(nèi)容如下:
#!nginx (-) # proxy.conf proxy_redirect off; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; #獲取真實(shí)ip #proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; #獲取代理者的真實(shí)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,輸入如下內(nèi)容
#運(yùn)行nginx所在的用戶名和用戶組 #user www www; #啟動(dòng)進(jìn)程數(shù) worker_processes 8; #全局錯(cuò)誤日志及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; #工作模式及連接數(shù)上限 events { use epoll; worker_connections 65535; } #設(shè)定http服務(wù)器,利用它的反向代理功能提供負(fù)載均衡支持 http { #設(shè)定mime類型 include mime.types; default_type application/octet-stream; include /usr/local/nginx/conf/proxy.conf; #charset gb2312; #設(shè)定請求緩沖 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訪問站點(diǎn) se… #所有jsp的頁面均交由tomcat處理 { index index.jsp; proxy_pass
http://localhost:8080
;#轉(zhuǎn)向tomcat處理 } location ~ ..(gif|jpg|jpeg|png|bmp|swf)$ #設(shè)定訪問靜態(tài)文件直接讀取不經(jīng)過tomcat { expires 30d; } location ~ ..(js|css)?$ { expires 1h; } #定義訪問日志的寫入格式 log_format access '$remote_addr - remoteuser[remote_user [remoteuser[time_local] “KaTeX parse error: Double superscript at position 12: request" ' '?status bodybytessent"body_bytes_sent "bodybytessent"http_referer” ’ ‘"$http_user_agent" $http_x_forwarded_for’; access_log /usr/local/nginx/logs/localhost.log access;#設(shè)定訪問日志的存放路徑 }
http://www.iis7.com/a/lm/vpsdq/}
感謝各位的閱讀,以上就是“Linux下Nginx+Tomcat整合的安裝與配置步驟”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對Linux下Nginx+Tomcat整合的安裝與配置步驟這一問題有了更深刻的體會,具體使用情況還需要大家實(shí)踐驗(yàn)證。這里是億速云,小編將為大家推送更多相關(guān)知識點(diǎn)的文章,歡迎關(guān)注!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。