まず、Tomcat フォルダーを作成します。Docker の構成を容易にするために、ルート ディレクトリに直接作成します。ステップ 1: フォルダーの作成: フォルダーを公開します。
mkdir -p /docker/tomcat/webapp8081 mkdir -p /docker/tomcat/webapp8082 mkdir -p /docker/tomcat/webapp8083
docker run -d --name tomcat8081 -p 8081:8080 -v /docker/tomcat/webapp8081:/usr/local/tomcat/webapps/ tomcat docker run -d --name tomcat8082 -p 8082:8080 -v /docker/tomcat/webapp8082:/usr/local/tomcat/webapps/ tomcat docker run -d --name tomcat8083 -p 8083:8080 -v /docker/tomcat/webapp8083:/usr/local/tomcat/webapps/ tomcat
docker Inspection tomcat8081
#ステップ 4: テストを容易にするために、ここでは war パッケージをアップロードせず、その中に hello/index.html ファイルを直接作成します
注: nginx が docker の場合、コンテナーは tomact コンテナー IP を使用する必要があります。それ以外の場合は接続されません。
まず、公式 Web サイトから nginx の正式バージョンをダウンロードします
公式 Web サイト:
##右側のナビゲーション バーで [ダウンロード] をクリックしてダウンロードに入ります インターフェイスで対応するバージョンを選択してダウンロードします。ここでは nginx-1.6.2.tar を使用しますダウンロードが完了したら、ファイルをカスタム フォルダーに配置します。ここでは、/usr/local/tools/nginx-1.6.2
## に配置します。 #次のコマンドを使用して nginx を解凍します: tar vxf nginx-1.6 .2.tar.gz解凍が完了したら、戻ります。ルート ディレクトリに移動し、ルート ディレクトリにホスト フォルダーを作成します。目的は、nginx をマウントできるようにファイルを作成することです (カスタマイズすることもできます) ここにホスト フォルダーを作成します
mkdir -p /docker/nginx/ vim /docker/nginx/nginx.conf mkdir -p /docker/nginx/html
解凍した negix の html フォルダーにあるindex.html 50x.html を /docker/nginx/html フォルダーにコピーします
これが negix conf ファイルです 注釈を追加すると形式が変わる可能性がありますので注意してください
nginx.conf:
user root;
worker_processes 2; #ここでスレッド数を設定
#error_log logs/error.log; #error_log logs/error.log notice; #error_log logs/error.log info; #pid logs/nginx.pid; events { worker_connections 1024; #最大连接数量 } http { include mime.types; default_type application/octet-stream; upstream mytomcat{ server 172.17.0.3:8080 weight=10; # 另外mytomcat 这里名字和下方的名字保持一致 这里需要和你的tomcat ip保持一致 server 172.17.0.4:8080 weight=50; server 172.17.0.5:8080 weight=10; } #log_format main '$remote_addr - $remote_user [$time_local] "$request" ' # '$status $body_bytes_sent "$http_referer" ' # '"$http_user_agent" "$http_x_forwarded_for"'; #access_log logs/access.log main; sendfile on; #tcp_nopush on; #keepalive_timeout 0; keepalive_timeout 65; #gzip on; server { listen 80; server_name mytomcat; #charset koi8-r; #access_log logs/host.access.log main; location / { # root html; # index index.html index.htm; proxy_connect_timeout 50; proxy_read_timeout 10; proxy_send_timeout 20; proxy_pass http://mytomcat; } #error_page 404 /404.html; # redirect server error pages to the static page /50x.html # error_page 500 502 503 504 /50x.html; location = /50x.html { root html; } # proxy the php scripts to apache listening on 127.0.0.1:80 # #location ~ \.php$ { # proxy_pass http://127.0.0.1; #} # pass the php scripts to fastcgi server listening on 127.0.0.1:9000 # #location ~ \.php$ { # root html; # fastcgi_pass 127.0.0.1:9000; # fastcgi_index index.php; # fastcgi_param script_filename /scripts$fastcgi_script_name; # include fastcgi_params; #} # deny access to .htaccess files, if apache's document root # concurs with nginx's one # #location ~ /\.ht { # deny all; #} } # another virtual host using mix of ip-, name-, and port-based configuration # #server { # listen 8000; # listen somename:8080; # server_name somename alias another.alias; # location / { # root html; # index index.html index.htm; # } #} # https server # #server { # listen 443 ssl; # server_name localhost; # ssl_certificate cert.pem; # ssl_certificate_key cert.key; # ssl_session_cache shared:ssl:1m; # ssl_session_timeout 5m; # ssl_ciphers high:!anull:!md5; # ssl_prefer_server_ciphers on; # location / { # root html; # index index.html index.htm; # } #} }
コンテナを作成して実行します。81:Yes 外部ネットワーク アクセス用のポートは、実際の状況に応じて変更できます。
/docker/nginx /nginx.conf ローカル ホスト ファイル
/etc/nginx/nginx.conf 解凍したディレクトリ (そのまま使用することも可能)
/docker/nginx/html ローカル ホスト ファイル
/usr/share/nginx/html 解凍したディレクトリ
docker run -d --name nginx81 -p 81:80 -v /docker/nginx/nginx.conf:/etc/nginx/nginx.conf -v /docker/nginx/html:/usr/share/nginx/html nginx
Test
http ://39.106.147.162:8085/hello/index.html ここで設定するのはポートです8085
直接アクセス
以上がDocker が nginx を使用して Tomcat クラスターを構築する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。