curl で HAProxy サーバー アフィニティを強制するにはどうすればよいですか?
私が試したcurlバージョン7.58で:
curl -I \
--proxy-header "Cookie: SRV_ID=172.0.0.2" \
-x localhost:3001 \
https://postman-echo.com/headers
私はまだラウンドロビン、最初の接続の負荷分散を取得しています:
HTTP/1.1 200 Connection established
set-cookie: SRV_ID="172.21.0.3"; path=/
HTTP/1.1 200 OK
Content-Length: 134
Content-Type: application/json; charset=utf-8
Date: Sat, 16 Nov 2019 22:05:22 GMT
ETag: W/"86-77S8g6gXGJd5i+Emjsb0b9sIcac"
Server: nginx
set-cookie: sails.sid=s%3AC1VtUY_GI...HsNx7LDg; Path=/; HttpOnly
Vary: Accept-Encoding
Connection: keep-alive
HAProxy 2.0.8 関連のバックエンド構成:
backend http-backend
mode http
balance roundrobin
default-server inter 2s fastinter 2s downinter 2s fall 3 rise 2
cookie SRV_ID insert
server container-172-21-0-2 172.21.0.2:3000 cookie \"172.21.0.2\" check
server container-172-21-0-3 172.21.0.3:3000 cookie \"172.21.0.3\" check
保存した Cookie を保存して送信することはできます。探している効果のために Cookie-jar ファイルを編集することもできますが、curl コマンドを 1 行で作成する方法を教えてください。
curl -b cookies.txt -c cookies.txt -x localhost:3001 http://scooterlabs.com/echo
Cookies.txt の内容:
# Netscape HTTP Cookie File
# https://curl.haxx.se/docs/http-cookies.html
# This file was generated by libcurl! Edit at your own risk.
scooterlabs.com FALSE / FALSE 0 SRV_ID "172.21.0.2"