簡體   English   中英

由於錯誤請求 400,bmsubmit 無法正常工作。為什么?

[英]bmsubmit is not working due to Bad Request 400. Why?

我正在使用 byteman 4.0.17。 安裝 byteman 成功。 使用 bmsubmit.sh 工具會引發錯誤。

$ byteman-download-4.0.17/bin/bmsubmit.sh -y
Failed to process request: java.lang.Exception: Invalid name/value pair in line [HTTP/1.1 400 Bad Request]. Full response below:
HTTP/1.1 400 Bad Request
Content-Type: text/plain; charset=utf-8
Connection: close

400 Bad Request

java.lang.Exception: Invalid name/value pair in line [HTTP/1.1 400 Bad Request]. Full response below:
HTTP/1.1 400 Bad Request
Content-Type: text/plain; charset=utf-8
Connection: close

400 Bad Request

    at [org.jboss.byteman.agent.submit.Submit.listSystemProperties][1](Submit.java:767)
    at org.jboss.byteman.agent.submit.Submit.main(Submit.java:1113)
$

此外,當我嘗試提交規則時,我得到一個錯誤。

$ byteman-download-4.0.17/bin/bmsubmit.sh -l /mnt/jenkins/FileDescriptorLeak.btm
HTTP/1.1 400 Bad Request
Content-Type: text/plain; charset=utf-8
Connection: close

400 Bad Request

$

我在這里做錯了嗎?

########################################################################
#
# Rule to trace opening files
#

RULE FileOutputStream open trace
CLASS java.io.FileOutputStream
METHOD <init>
AT EXIT
IF TRUE
DO traceStack("*** Called init in thread " + Thread.currentThread().getName() + "\n", 30)
ENDRULE

該問題的解決方案是在使用 bminstall 命令時定義一個未使用的端口。 使用 -p 標志。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM