1
私はgatling
レコーダーを介してスクリプトを記録しようとしています。ガトリングストレスツール+フェニックス
- > [スタート]をクリックします。 http://185.28.103.176:4000/
- >私はいくつかの "実行されるイベント" にログインするだけでなく、エラーを見ることができます:>ロード・ページ -
- (私のシステムの設定で)127.0.0.1
とポート8000
に対処するための>設定プロキシ
D:\Downloads\gatling\bin>recorder.bat
GATLING_HOME is set to "D:\Downloads\gatling"
JAVA = ""C:\Program Files\Java\jdk1.8.0_72\bin\java.exe""
21:27:15.922 [WARN ] i.n.b.ServerBootstrap - Unknown channel option 'TCP_NODELAY' for channel '[id: 0x80873c61]'
21:27:19.082 [ERROR] i.g.r.h.h.u.HttpsUserHandler - Handshake failure with /185.28.103.176:4000
io.netty.handler.ssl.NotSslRecordException: not an SSL/TLS record: 485454502f312e31203430302042616420526571756573740d0a636f6e6e656374696f6e3a20636c6f73650d0a7365727665723a20436f77626f790d0a646174653a204d6f6e2c203230204d617220323031372032303a32373a313720474d540d0a636f6e74656e742d6c656e6774683a20300d0a0d0a
at io.netty.handler.ssl.SslHandler.decode(SslHandler.)
....
21:27:19.083 [WARN ] i.n.c.DefaultChannelPipeline - An exceptionCaught() event was fired, and it reached at the tail of the pipeline. It usually means the last handler in the pipeline did not handle the exception.
io.netty.handler.ssl.NotSslRecordException: not an SSL/TLS record: 485454502f312e31203430302042616420526571756573740d0a636f6e6e656374696f6e3a20636c6f73650d0a7365727665723a20436f77626f790d0a646174653a204d6f6e2c203230204d617220323031372032303a32373a313720474d540d0a636f6e74656e742d6c656e6774683a20300d0a0d0a
at io.netty.handler.ssl.SslHandler.decode(SslHandler.)
....
私のページには続行できません。 (プロキシなしで、ページが働いている)
//正しくChromeとNightyブラウザでのみ取り組んでいるページ
編集: のdevの設定:
config :chatier, Chatier.Endpoint,
check_origin: false,
code_reloader: true,
debug_errors: true,
http: [port: 4000],
https: [
certfile: "priv/keys/dev/gatlingCA.cert.pem",
ciphers: [
"ECDHE-ECDSA-AES256-GCM-SHA384",
...
],
dhfile: "priv/keys/dev/dh-params.pem",
honor_cipher_order: true,
keyfile: "priv/keys/dev/gatlingCA.key.pem",
max_connections: :infinity,
otp_app: :chatier,
port: 4443,
reuse_sessions: true,
secure_renegotiate: true,
versions: [:'tlsv1.2'],
]
私は最初の投稿を編集します。私は正しいSSL設定を持っていると思います。 https://185.28.103.176:4443/ – Wulpo
に接続することもできますが、ツールがポート4000にアクセスしようとしていますが、4443 – cpjolicoeur
にアクセスしていますが、ポート4000にアクセスしているため4443ではありません。 – Wulpo