Créez d'abord le dossier tomcat. Afin de faciliter la configuration de docker, je vais le créer directement dans le répertoire racine. Étape 1 : Créer le dossier : Dossier Release
mkdir -p /docker/tomcat/webapp8081 mkdir -p /docker/tomcat/webapp8082 mkdir -p /docker/tomcat/webapp8083
#🎜🎜. ##🎜 🎜#Étape 2 : Créez un conteneur Tomcat (le port peut être modifié en fonction de votre situation réelle)
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
Une fois la création terminée, utilisez la commande docker ps pour vérifier si la création est réussie et utilisez
# 🎜🎜#Étape 3 : Vérifiez l'adresse IP de Tomcat Utilisez la commande pour interroger ici Seul le premier exemple est utilisé#🎜🎜. #docker inspect tomcat8081</ code></p><p ><img src="https://img.php.cn/upload/article/000/887/227/168526005746526. jpg" alt="Comment Docker utilise-t-il nginx pour créer un cluster Tomcat" /></p><p >Étape 4 : Afin de faciliter les tests, je ne téléchargerai pas le package war ici, mais créerai directement un hello/ index.html qu'il contient<code>docker inspect tomcat8081
第四步:为了方便测试 我这里就不上传war包了,直接 在里面创建了一个hello/index.html 文件
注意:如果nginx为docker容器,必须使用tomact容器ip,否则连不上
首先在官网上下载nginx的官方版本
官网:
点击右边导航栏的download,进入下载界面 选择对应的版本 进行下载,我这里就使用nginx-1.6.2.tar
下载完成后,将文件放到自定义的文件夹,我这里放到/usr/local/tools/nginx-1.6.2
使用 这个命令将nginx 解压:
tar vxf nginx-1.6.2.tar.gz
Utilisez cette commande pour décompresser nginx :
tar vxf nginx-1.6.2.tar .gz
# 🎜🎜#Une fois la décompression terminée, je retourne dans le répertoire racine et crée un dossier hôte dans le répertoire racine. Le but est de créer des fichiers pour que nginx puisse être monté (vous pouvez aussi Définition)
. Créez le dossier hôte ici
mkdir -p /docker/nginx/ vim /docker/nginx/nginx.conf mkdir -p /docker/nginx/html
Copiez le index.html 50x.html dans le dossier html de negix que vous avez décompressé dans /docker/nginx/html Dans le dossier
, un Le fichier negix conf est fourni ici. Si vous ajoutez des commentaires, le format peut changer. N'oubliez pas de supprimer les commentaires
nginx.conf : #🎜🎜 #
user root;#. 🎜🎜#worker_processes 2; #Définissez votre nombre de threads ici
#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; # } #} }
Créez et exécutez le conteneur#🎜🎜 #
81 : C'est le port pour l'accès au réseau externe. Celui-ci peut être modifié en fonction de la situation réelle/docker/nginx/nginx.conf fichier hôte local
#. 🎜🎜#/etc/nginx/nginx.conf Répertoire décompressé (vous pouvez également le laisser inchangé) #🎜🎜##🎜🎜#/docker/nginx/html Fichier hôte local #🎜🎜##🎜🎜 #/usr/share /nginx/html Répertoire décompressé#🎜🎜#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
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!