Home Backend Development PHP Tutorial nginx+tomcat installation and configuration under centos nginx combined with tomcat

nginx+tomcat installation and configuration under centos nginx combined with tomcat

Aug 08, 2016 am 09:21 AM
nbsp nginx proxy quot tomcat

1. Install tomcat:

(1), install jdk:
http://www.oracle.com/technetwork/java/javase/downloads/jdk-7u3 -download-1501626.html
[root@localhost java]# mkdir -p /usr/java
[root@localhost java]# tar zxvf jdk-7u3-linux-x64.tar.gz -C /usr/java/
[root@localhost java]# vi /etc/profile

JAVA_HOME="/usr/java/jdk1.7.0_03"
JRE_HOME="/usr/java/jdk1.7.0 _03/jre"# Without this configuration, an error will be reported when tomcat is closed.
CLASSPATH=$CLASSPATH:$JAVA_HOME/lib:$JAVA_HOME/jre/lib
PATH=$JAVA_HOME/bin:$JAVA_HOME/jre/bin:$PATH
export JAVA_HOME
export JRE_HOME
export CLASSPATH
export PA TH USER LOGNAME MAIL HOSTNAME HISTSIZE INPUTRC

[root@localhost java]# source /etc/profile
[root@localhost java]# java -version
java version "1.7.0_03"
Java(TM) SE Runtime Environment (build 1.7.0_03-b04)
Java HotSpot(TM) 64-Bit Server VM (build 22.1-b02, mixed mode) 2. Install tomcat: Tomcat Download: http://tomcat.apache.org/# tar zxvf apache-tomcat-7.0.26.tar.gz -C /usr/src/# cd /usr /src/# cp -rf apache-tomcat-7.0.26 /usr/local/tomcat# cp -rf apache-tomcat-7.0.26 /usr/local/tomcat1
Change the first one TOMCAT is installed in /usr/local/tomcat

# cd /usr/local/tomcat

# vi /etc/profile

Add $TOMCAT_HOME/common/lib/servlet.jar after CLASSPATH Add after PATH: $CATALINA_HOME/libexport TOMCAT_HOME=/usr/local/tomcat
export CATALINA_HOME=/usr/local/tomcat
export CATALINA_BASE=/usr/local/tomcat
export PATH= $PATH:$CATALINA_HOME/lib
export CLASSPATH=$CLASSPATH:$CATALINA_HOME/common/lib/servlet.jar
Install the second TOMCAT in /usr/local/tomcat1Set environment variables #vi /etc/profileAdd $TOMCAT_2_HOME/common/lib/servlet.jar after CLASSPATHAdd after PATH: $CATALINA_2_HOME/libexport TOMCAT_1_HOME=/usr/local/ tomcat1
export CATALINA_1_HOME=/usr/local/tomcat1
export CATALINA_1_BASE=/usr/local/tomcat1
export PATH=$PATH:$CATALINA_1_HOME/lib
export CLASSPATH=$CLASSPATH:$CATALINA_1_HOME/common/lib/servlet.jar
Save and exit:wqEnable environment variables to take effect#source /etc/profile ModifyTOMCAT configuration file vi /usr/local/tomcat1/conf/server.xml (if the two tomcats are not on the same machine, you don’t need to modify the port) Change the following content...

="9005" shutdown="SHUTDOWN">...

)

.../> ModifyTOMCAT configuration startup file /usr/local/tomcat1/bin/startup.shAdd the following content on execexport JAVA_HOME=/usr/java/jdk1.7.0_03export JRE_HOME=/usr/java/jdk1.7.0_03/jreexport CLASSPATH=$JAVA_HOME/libexport PATH=$JAVA_HOME/bin:$PATH % Note that there are many export PATH=$JAVA_HOME/bin on the Internet, which will report an error when starting %export CATALINA_HOME=$CATALINA_2_HOMEexport CATALINA_BASE=$CATALINA_2_BASEModify
TOMCAT configuration startup File /usr/local/tomcat2/bin/shutdown.shAdd the following content on execexport JAVA_HOME=/usr/local/java/jdk1.7.0_03export JRE_HOME=/usr/java/ jdk1.7.0_03/jreexport CLASSPATH=$JAVA_HOME/libexport PATH=$JAVA_HOME/bin:$PATHexport CATALINA_HOME=$CATALINA_2_HOMEexport CATALINA_BASE=$CATALINA_2_BASE Start TOMCAT /usr/local/tomcat1/bin/startup.shBrowser input: http://127.0.0.1:9080/
CloseTOMCAT/usr/local/tomcat1/bin/shutdown.sh 3. Install nginx: nginx Download: http://wiki.codemongers.com/NginxChspcre: http://sourceforge.net/projects/ pcre/files/pcre/8.30/
upstream : http://code.google.com/p/nginx-upstream-jvm-route/downloads/detail?name=nginx-upstream-jvm-route-0.1.tar.gz&can=2&q=
(1), install pcre:
# tar zxvf pcre-8.30.tar.gz -C /usr/src/
# cd /usr/src/pcre-8.30/
# ./ configure
# make && make install
(2), install plug-in upstream,
# tar zxvf nginx-1.0.13.tar.gz -C /usr/src/
# tar zxvf nginx-upstream-jvm-route-0.1.tar.gz -C /usr/src/
Note that this is extracted to the same folder. The default name here is nginx-1.0.13
# cd /usr/nginx-1.0.13/
# patch -p0 < /usr/nginx-1.0.13/nginx_upstream_jvm_route/jvm_route.patch
(3), install nginx:
# . /configure --prefix=/usr/local/nginx --with-http_stub_status_module --with-pcre=/usr/src/pcre-8.30 --add-module=/usr/src/nginx_upstream_jvm_route --with-openssl=/ usr/ ( --user= --group=)
# make && make install
(4), edit nginx.conf:
# vi /usr/local /nginx/conf/nginx.conf
user nobody;worker_processes 8;error_log logs/nginx_error.log crit; Specifies the value for maximum file descriptors that can be opened by this process. worker_rlimit_nofile 20480; upstream aa { Server 127.0.0.1:8080 max_fails = 3 fail_timeout = 50s; 0s; } includec mime.types; default_type application/octet-stream; ; client_header_buffer_size 32k; large_client_header_buffers 4 32k; client_header_timeout 20; client_max_body_size 20m; sendfile on; tcp_nopush     on; keepalive_timeout 60; tcp_nodelay on; proxy_connect_timeout 30; proxy_read_timeout 60; proxy_send_timeout 20; proxy_buffer_size 96k; proxy_buffers 8 256k; proxy_busy_buffers_size 512k; proxy_temp_file_write_size 512k;# proxy_store on;# proxy_store_access user:rw group:rw all:rw; proxy_temp_path /usr/local/nginx/proxy_temp;proxy_cache_path /usr/local/nginx/www levels=1:2 keys_z inactive=1d max_size=2g; gzip on; gzip_proxied any; 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 one $binary_remote_addr 10m; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $remote_addr;   server {        listen       80;        server_name 192.168.3.30;        index index.html;#    rewrite ^/index.html     /   last;#rewrite ^/(.*)_p([0-9]*)_(.*)_e(.*)/(.*)_(.*)_t(.*)_o(.*)_(l|s|k|[0-9]*)$   /searchclassbigkey?skey=$1&pno=$2&sw=$3&pe=$4&rk=$5&dekey=$6&tid=$7&ocs=$8&ocid=$9 last;#rewrite ^/(.*)_p([0-9]*)_s(.*)/(.*)_(.*)_(.*)$ /searchkey?skey=$1&pno=$2&sw=$3&pe=$4&rk=$5&dekey=$6 last;# rewrite ^/d-(.*)$       /detaillist?id=$1 last;   location /    {#     proxy_next_upstream http_502 http_504 error timeout invalid_header;#     proxy_headers_hash_max_size 1024;#     proxy_headers_hash_bucket_size 128;#     proxy_cache cache_one;     proxy_cache_valid 200 304 2h;     proxy_cache_valid any 30m;     proxy_cache_key $host$uri$is_args$args;#     proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;     proxy_pass http://aa; }  location ~ .*.(gif|jpg|jpeg|png|bmp|swf)$    {#     proxy_cache cache_one;     proxy_cache_valid 200 304 5h;     proxy_cache_valid any 3m;     proxy_cache_key $host$uri$is_args$args;     expires      8h;     proxy_pass http://aa;   }   location ~ .*.(js|css|html)$   {#     proxy_cache cache_one;     proxy_cache_valid 200 304 3h;     proxy_cache_valid any 3m;     proxy_cache_key $host$uri$is_args$args;     expires      5h;     proxy_pass http://aa;}  log_format aa '$remote_addr - $remote_user [$time_local] "$request" '             '$status $body_bytes_sent "$http_referer" '             '"$http_user_agent" $http_x_forwarded_for'; access_log /usr/local/nginx/logs/aa.log aa; }  server {   listen       80;   server_name 192.168.3.31;   index index.html;   location /    {     proxy_cache cache_one;     proxy_cache_valid 200 304 2h;     proxy_cache_valid any 3m;     proxy_cache_key $host$uri$is_args$args;     proxy_pass http://bb;    }    location ~ .*.(gif|jpg|jpeg|png|bmp|swf|js|css|html)$    {     proxy_cache cache_one;     proxy_cache_valid 200 304 5h;     proxy_cache_valid any 3m;     expires      8h;     proxy_cache_key $host$uri$is_args$args;     proxy_pass http://bb;   }log_format bb '$remote_addr - $remote_user [$time_local] "$request" '             '$status $body_bytes_sent "$http_referer" '             '"$http_user_agent" $http_x_forwarded_for'; access_log /usr/local/nginx/logs/bb.log bb; } } # /usr/local/nginx/sbin/nginx -tnginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is oknginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful # /usr/local/nginx/sbin/nginx# netstat -anpt | grep 80         tcp        0      0 0.0.0.0:80                  0.0.0.0:*                   LISTEN      30169/nginx   # /usr/local/nginx/sbin/nginx –s reload

以上就介绍了centos下nginx+tomcat安装配置 nginx结合tomcat,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to deploy multiple projects in tomcat How to deploy multiple projects in tomcat Apr 21, 2024 am 09:33 AM

To deploy multiple projects through Tomcat, you need to create a webapp directory for each project and then: Automatic deployment: Place the webapp directory in Tomcat's webapps directory. Manual deployment: Manually deploy the project in Tomcat's manager application. Once the project is deployed, it can be accessed by its deployment name, for example: http://localhost:8080/project1.

Where is the root directory of the tomcat website? Where is the root directory of the tomcat website? Apr 21, 2024 am 09:27 AM

The Tomcat website root directory is located in Tomcat's webapps subdirectory and is used to store web application files, static resources, and the WEB-INF directory; it can be found by looking for the docBase attribute in the Tomcat configuration file.

How to run two projects with different port numbers in tomcat How to run two projects with different port numbers in tomcat Apr 21, 2024 am 09:00 AM

Running projects with different port numbers on the Tomcat server requires the following steps: Modify the server.xml file and add a Connector element to define the port number. Add a Context element to define the application associated with the port number. Create a WAR file and deploy it to the corresponding directory (webapps or webapps/ROOT). Restart Tomcat to apply changes.

How to generate URL from html file How to generate URL from html file Apr 21, 2024 pm 12:57 PM

Converting an HTML file to a URL requires a web server, which involves the following steps: Obtain a web server. Set up a web server. Upload HTML file. Create a domain name. Route the request.

How to run html and jsp on tomcat How to run html and jsp on tomcat Apr 21, 2024 am 09:04 AM

Tomcat can run HTML and JSP. The method is as follows: copy the HTML file to the corresponding subdirectory of the Tomcat directory and access it in the browser. Copy the JSP file to the corresponding subdirectory of the Tomcat directory, and use the <%@ page %> directive to specify the Java code and access it in the browser.

Reasons for garbled characters in tomcat Reasons for garbled characters in tomcat Apr 21, 2024 am 10:18 AM

Reasons for Tomcat garbled characters: 1. Character set mismatch; 2. HTTP response header is not set correctly; 3. Filter or encoder configuration error; 4. Web page encoding is incorrect; 5. Other reasons (including server-side language, database encoding and proxy server issues).

How to add a server in eclipse How to add a server in eclipse May 05, 2024 pm 07:27 PM

To add a server to Eclipse, follow these steps: Create a server runtime environment Configure the server Create a server instance Select the server runtime environment Configure the server instance Start the server deployment project

How to run war file in tomcat How to run war file in tomcat Apr 21, 2024 am 09:06 AM

Steps to deploy a WAR file using Tomcat: Unzip the WAR file into Tomcat's webapps directory. Create a directory with the same name as the WAR file and move the unzipped files to that directory. Start the Tomcat service. The WAR file is automatically deployed at startup and can be accessed through the browser. The URL format is: http://localhost:8080/WAR_file_directory name/

See all articles