ドッカーのコンテナ間の接続を作成しようとしています。php5-fpm を含む 1 つのコンテナーと、nginx を含む 2 つ目のコンテナー。
php5-fpm のデフォルトの設定、わずかな変更:
listen = 9000
listen.allowed_clients =
および nginx (/etc/nginx/sites-available/default):
server {
listen 80 default_server;
#listen [::]:80 default_server ipv6only=on;
root /var/www/testing;
index index.php
# Make site accessible from http://localhost/
server_name localhost;
location / {
try_files $uri $uri/ /index.php;
}
location ~ \.php$ {
fastcgi_split_path_info ^(.+\.php)(/.+)$;
# NOTE: You should have "cgi.fix_pathinfo = 0;" in php.ini
#fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_pass 192.168.1.2:9000;
fastcgi_index index.php;
include fastcgi_params;
}
}
次に、 https://github.com/jpetazzo/pipeworkとの接続を作成しようとしましたが、それが理由fastcgi_pass 192.168.1.2:9000;
です。コンテナーから直接 IP を使用してみましたが、何もしませんでした。
そして、lynxでページを開こうとすると、BadGatewayがあります。
post port MASTER_PORT=$(sudo docker port $MASTER_ID 9000) を試してみましたが、何も... ping は問題なく実行されます。nginx からポート 9000 への Telnet が数秒間開いたままになり、「接続が閉じられました...」
私が間違っていることを誰が説明できますか? どうも!
/編集/ fastcgi_pass を 172.17.42.1:9000; に変更してみました。(ホスト マシン上の docker0 のアドレス) を指定し、ホスト マシンで tcpdump を開始します。
tcpdump -i docker0 ポート 9000
そして、私が持っています:
tcpdump: verbose output suppressed, use -v or -vv for full protocol decode
listening on docker0, link-type EN10MB (Ethernet), capture size 65535 bytes
10:24:54.529572 IP 172.17.0.20.40932 > 172.17.42.1.9000: Flags [S], seq 141160046, win 14600, options [mss 1460,sackOK,TS val 1235770 ecr 0,nop,wscale 7], length 0
10:24:54.529594 IP 172.17.42.1.9000 > 172.17.0.20.40932: Flags [S.], seq 2944341886, ack 141160047, win 14480, options [mss 1460,sackOK,TS val 1235770 ecr 1235770,nop,wscale 7], length 0
10:24:54.529605 IP 172.17.0.20.40932 > 172.17.42.1.9000: Flags [.], ack 1, win 115, options [nop,nop,TS val 1235770 ecr 1235770], length 0
10:24:54.530324 IP 172.17.0.20.40932 > 172.17.42.1.9000: Flags [P.], seq 1:665, ack 1, win 115, options [nop,nop,TS val 1235771 ecr 1235770], length 664
10:24:54.530387 IP 172.17.42.1.9000 > 172.17.0.20.40932: Flags [.], ack 665, win 124, options [nop,nop,TS val 1235771 ecr 1235771], length 0
10:24:54.530534 IP 172.17.42.1.44233 > 172.17.0.12.9000: Flags [S], seq 1354597292, win 14600, options [mss 1460,sackOK,TS val 1235771 ecr 0,nop,wscale 7], length 0
10:24:54.530549 IP 172.17.0.12.9000 > 172.17.42.1.44233: Flags [R.], seq 0, ack 1354597293, win 0, length 0
10:24:54.531044 IP 172.17.42.1.9000 > 172.17.0.20.40932: Flags [R.], seq 1, ack 665, win 124, options [nop,nop,TS val 1235771 ecr 1235771], length 0
このように、パケットはコンテナ間を移動します...しかし、なぜ BadGateway なのですか?