CF 292E Copying Data

题目链接:http://codeforces.com/problemset/problem/292/E


题目大意:

给定两个长度为n(1~10^5)的数组a[]和数组b[],有两个操作。

1: 1 x y k,令b[y+q]=a[x+q] (0<=q<k)

2: 2 x, 问当前的b[x]的值。

最多操作次数m为10^5.


题目思路:

croc 2013 round1 的最后一题...呵呵了是个线段树水题= =,尼玛啊与round2檫肩而过。

维护两个值,bx、by分别表示替换时在a[]中的起点和在b[]中的起点,by用来定位替换的位置。

初始值bx和by均为0。

如果2 x询问得到的bx为0,那么表示没被替换过。

否则输出a[bx+x-by]的值。


代码:

#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include <ctype.h>
#include <math.h>
#include <stack>
#include <queue>
#include <map>
#include <set>
#include <vector>
#include <string>
#include <iostream>
#include <algorithm>
using namespace std;

#define ll __int64
#define ls rt<<1
#define rs ls|1
#define lson l,mid,ls
#define rson mid+1,r,rs
#define middle (l+r)>>1
#define clr_all(x,c) memset(x,c,sizeof(x))
#define clr(x,c,n) memset(x,c,sizeof(x[0])*(n+1))
#define eps (1e-8)
#define MOD 1000000007
#define INF 0x3f3f3f3f
#define PI (acos(-1.0))
#pragma comment(linker, "/STACK:102400000,102400000")
template <class T> T _max(T x,T y){return x>y? x:y;}
template <class T> T _min(T x,T y){return x<y? x:y;}
template <class T> T _abs(T x){return (x < 0)? -x:x;}
template <class T> T _mod(T x,T y){return (x > 0)? x%y:((x%y)+y)%y;}
template <class T> void _swap(T &x,T &y){T t=x;x=y;y=t;}
template <class T> void getmax(T& x,T y){x=(y > x)? y:x;}
template <class T> void getmin(T& x,T y){x=(x<0 || y<x)? y:x;}
int TS,cas=1;
const int M=100000+5;
int n,m;
int a[M],b[M];
int bx[M<<2],by[M<<2];
struct node{
    int x,y;
    node(int _x=0,int _y=0){x=_x,y=_y;}
};

void build(int l,int r,int rt){
    bx[rt]=by[rt]=0;
    if(l==r) return;
    int mid=middle;
    build(lson),build(rson);
}

void pushDown(int rt){
    if(bx[rt] || by[rt]){
        bx[ls]=bx[rs]=bx[rt];
        by[ls]=by[rs]=by[rt];
        bx[rt]=by[rt]=0;
    }
}

void update(int l,int r,int rt,int L,int R,int x,int y){
    if(L<=l && r<=R){
        bx[rt]=x,by[rt]=y;
        return;
    }
    pushDown(rt);
    int mid=middle;
    if(L<=mid) update(lson,L,R,x,y);
    if(mid<R) update(rson,L,R,x,y);
}

node query(int l,int r,int rt,int p){
    if(l==r) return node(bx[rt],by[rt]);
    pushDown(rt);
    int mid=middle;
    if(p<=mid) return query(lson,p);
    else return query(rson,p);
}

void run(){
    int i,j;
    for(i=1;i<=n;i++) scanf("%d",&a[i]);
    for(i=1;i<=n;i++) scanf("%d",&b[i]);
    build(1,n,1);
    int x,y,k;
    while(m--){
        scanf("%d",&i);
        if(i==1){
            scanf("%d%d%d",&x,&y,&k);
            update(1,n,1,y,y+k-1,x,y);
        }else{
            scanf("%d",&x);
            node t=query(1,n,1,x);
            if(t.x == 0) printf("%d\n",b[x]);
            else printf("%d\n",a[t.x+x-t.y]);
        }
    }
}

void preSof(){
}

int main(){
    //freopen("input.txt","r",stdin);
    //freopen("output.txt","w",stdout);
    preSof();
    //run();
    while((~scanf("%d%d",&n,&m))) run();
    //for(scanf("%d",&TS);cas<=TS;cas++) run();
    return 0;
}


修改之后又有新的报错了 [2025-10-25 09:11:49,997][INFO][1:132592204510912][/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/HiviewPlatform.py:78][__init__] uuid_path -> /tmp/Hubble/LogkitWeb/AnalyseTask_web2EMUI/00148acc-4d1b-4893-9f8d-cf5bc53c25eb [2025-10-25 09:11:49,997][INFO][1:132592204510912][/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/HiviewPlatform.py:79][__init__] uuid_str -> 00148acc-4d1b-4893-9f8d-cf5bc53c25eb [2025-10-25 09:11:50,535][INFO][1:132592204510912][/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/HiviewPlatform.py:100][start_analysis] ============LYLYLY=============== [2025-10-25 09:11:50,536][INFO][1:132592204510912][/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/HiviewPlatform.py:101][start_analysis] ============task_info=============== [2025-10-25 09:11:50,536][INFO][1:132592204510912][/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/HiviewPlatform.py:102][start_analysis] task_info -> {'resultTopic': 'AnalyseTask_EMUI2web', 'topic': 'AnalyseTask_web2EMUI', 'common_info': {'syn_id': '', 'source_description': '', 'analysis_tool': ['Hubble'], 'extended_info': {}, 'happen_time': '', 'field': '', 'field2': '', 'betano': '', 'task_class': '', 'source': 'LogkitWeb', 'version': '', 'dtsno': '', 'eventid': '', 'product': '', 'log_download_list': [[['RemoteLog_commercial_LMR-AL10_LMU-AL10 5.1.0.227(SP12C00E226R7P8)_QSFtINNtWq7wANLUdZUERMoRCrVElIPcLSCLFXzl9Hg=_PP1758525182974A-001_20250922151306.zip', 'https://aresocean.huawei.com/hubble/hubblesvc/hubbleportal/report/downloadLogByDate?fileName=7ccd3e2f0ae6413da4ca75da15c87571_RemoteLog_commercial_LMR-AL10_LMU-AL10+5.1.0.227%28SP12C00E226R7P8%29_QSFtINNtWq7wANLUdZUERMoRCrVElIPcLSCLFXzl9Hg%3D_PP1758525182974A-001_20250922151306.zip&date=20251025', '']]], 'errorcode1': '', 'errorcode3': '', 'errorcode2': '', 'errorcode4': '', 'batch_or_not': False, 'logsource': 'iDebug', 'task_uuid': '00148acc-4d1b-4893-9f8d-cf5bc53c25eb', 'username': 'HubbleTest', 'logtype': '', 'sn': '', 'beta_com': 'beta'}, 'user_defined_info': {'ReliabilityWebTool': {'eventid': '', 'remark': '', 'chip_platform': '', 'betatype': '', 'times': '', 'project': '', 'eid': '', 'faulttype': '', 'conclusion': ''}, 'Hubble': {'analysis_type': ['analysis'], 'selfvali': '', 'analysis_field': '', 'dev': 'False', 'script_vali': {'fault_name': '湖内稳定与流畅', 'input_interface_demo': '', 'input_interface_standard': '', 'script_name': 'eqr7plLp_stability_script_third_donghu.py', 'script_url': '/opt/samba3/ScriptValidation/20251025/SPPQE9UW_eqr7plLp_stability_script_third_donghu.py', 'fault_en': ''}}}, 'filename': None, 'filepath': None, 'runfilename': None, 'runfilepath': None, 'device': '', 'callingsource': 'LogkitWeb', 'logsource': 'iDebug', 'product': '', 'version': '', 'time': None, 'field': '', 'errorcode1': '', 'errorcode2': '', 'errorcode3': '', 'errorcode4': '', 'logfiles_url': [{'url': 'https://aresocean.huawei.com/hubble/hubblesvc/hubbleportal/report/downloadLogByDate?fileName=7ccd3e2f0ae6413da4ca75da15c87571_RemoteLog_commercial_LMR-AL10_LMU-AL10+5.1.0.227%28SP12C00E226R7P8%29_QSFtINNtWq7wANLUdZUERMoRCrVElIPcLSCLFXzl9Hg%3D_PP1758525182974A-001_20250922151306.zip&date=20251025', 'name': 'RemoteLog_commercial_LMR-AL10_LMU-AL10 5.1.0.227(SP12C00E226R7P8)_QSFtINNtWq7wANLUdZUERMoRCrVElIPcLSCLFXzl9Hg=_PP1758525182974A-001_20250922151306.zip'}], 'description': None, 'userinfo': None, 'uuid': '00148acc-4d1b-4893-9f8d-cf5bc53c25eb', 'log_consume_date': None, 'uploadfiles': [], 'ocean_dest': '/opt/samba3/20251025/17/00148acc-4d1b-4893-9f8d-cf5bc53c25eb'} [2025-10-25 09:11:50,536][INFO][1:132592204510912][/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/HiviewPlatform.py:103][start_analysis] ====task_info结束======== [2025-10-25 09:11:50,536][INFO][1:132592204510912][/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/HiviewPlatform.py:105][start_analysis] uuid -> /tmp/Hubble/LogkitWeb/AnalyseTask_web2EMUI/00148acc-4d1b-4893-9f8d-cf5bc53c25eb [2025-10-25 09:11:50,536][INFO][1:132592204510912][/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/HiviewPlatform.py:106][start_analysis] =======uuid结束============== [2025-10-25 09:11:50,678][INFO][1:132592204510912][/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/core/HiviewAutomata.py:102][unpack_task_info] Kafka result topic is : [AnalyseTask_EMUI2web] [2025-10-25 09:11:50,830][INFO][1:132592204510912][/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/HiviewPlatform.py:48][wrapper] 当前函数 [receive_task] 运行时间 0.15 秒 [2025-10-25 09:11:50,971] [INFO] [/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/utils/basic/LogExtractionRecordUtils.py] [line:167] [insert_analyse_runtime_data] hubble_runtime_measurement 缺失日志基础信息 type:1 data:{'model': 'receive_task', 's': 1761354710, 'e': 1761354710, 'd': 0} [2025-10-25 09:11:50,971][INFO][1:132592204510912][/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/utils/basic/HiviewKafka.py:179][send_msg_to_web] 发送Kafka消息的Topic: [AnalyseTask_EMUI2web], msg_dict: [{'quesid': '00148acc-4d1b-4893-9f8d-cf5bc53c25eb', 'resultpath': '/opt/samba3/20251025/17/00148acc-4d1b-4893-9f8d-cf5bc53c25eb', 'result': -2, 'updatefiles': '', 'error_detail': '', 'processflag': ''}] [2025-10-25 09:11:51,861][INFO][1:132592204510912][/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/core/service/doorman/LogDownloader.py:215][stream_download] 日志下载完成, 路径名称: [/tmp/Hubble/LogkitWeb/AnalyseTask_web2EMUI/00148acc-4d1b-4893-9f8d-cf5bc53c25eb/RemoteLog_commercial_LMR-AL10_LMU-AL10 5.1.0.227(SP12C00E226R7P8)_QSFtINNtWq7wANLUdZUERMoRCrVElIPcLSCLFXzl9Hg=_PP1758525182974A-001_20250922151306.zip] [2025-10-25 09:11:51,865][INFO][1:132592204510912][/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/core/HiviewAutomata.py:706][check_mbb_log] !start check mbb : [{'url': 'https://aresocean.huawei.com/hubble/hubblesvc/hubbleportal/report/downloadLogByDate?fileName=7ccd3e2f0ae6413da4ca75da15c87571_RemoteLog_commercial_LMR-AL10_LMU-AL10+5.1.0.227%28SP12C00E226R7P8%29_QSFtINNtWq7wANLUdZUERMoRCrVElIPcLSCLFXzl9Hg%3D_PP1758525182974A-001_20250922151306.zip&date=20251025', 'name': 'RemoteLog_commercial_LMR-AL10_LMU-AL10 5.1.0.227(SP12C00E226R7P8)_QSFtINNtWq7wANLUdZUERMoRCrVElIPcLSCLFXzl9Hg=_PP1758525182974A-001_20250922151306.zip'}] [2025-10-25 09:11:51,866][INFO][1:132592204510912][/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/core/HiviewAutomata.py:718][check_mbb_log] match_pattern : ^[A-Za-z]{1,3}\d+.* ,logfile_fullname : RemoteLog_commercial_LMR-AL10_LMU-AL10 5.1.0.227(SP12C00E226R7P8)_QSFtINNtWq7wANLUdZUERMoRCrVElIPcLSCLFXzl9Hg=_PP1758525182974A-001_20250922151306.zip [2025-10-25 09:11:51,866][INFO][1:132592204510912][/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/core/HiviewAutomata.py:724][check_mbb_log] !check end, skip mbb [2025-10-25 09:11:51,866][INFO][1:132592204510912][/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/utils/basic/HiviewKafka.py:179][send_msg_to_web] 发送Kafka消息的Topic: [AnalyseTask_EMUI2web], msg_dict: [{'quesid': '00148acc-4d1b-4893-9f8d-cf5bc53c25eb', 'resultpath': '/opt/samba3/20251025/17/00148acc-4d1b-4893-9f8d-cf5bc53c25eb', 'result': -3, 'updatefiles': '', 'error_detail': '', 'processflag': ''}] [2025-10-25 09:11:54,627][WARNING][1:132592204510912][/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/core/service/doorman/LogUnzipper.py:352][unTAR] 压缩文件[/tmp/Hubble/LogkitWeb/AnalyseTask_web2EMUI/00148acc-4d1b-4893-9f8d-cf5bc53c25eb/RemoteLog_commercial_LMR-AL10_LMU-AL10 5.1.0.227(SP12C00E226R7P8)_QSFtINNtWq7wANLUdZUERMoRCrVElIPcLSCLFXzl9Hg=_PP1758525182974A-001_20250922151306/remoteLog/charge-log/charge-log-000.tar/charge-log-000.tar]损坏 [2025-10-25 09:11:55,198][INFO][1:132592204510912][/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/utils/basic/HiviewKafka.py:179][send_msg_to_web] 发送Kafka消息的Topic: [AnalyseTask_EMUI2web], msg_dict: [{'quesid': '00148acc-4d1b-4893-9f8d-cf5bc53c25eb', 'resultpath': '', 'result': 200, 'updatefiles': '', 'error_detail': '压缩文件[/tmp/Hubble/LogkitWeb/AnalyseTask_web2EMUI/00148acc-4d1b-4893-9f8d-cf5bc53c25eb/RemoteLog_commercial_LMR-AL10_LMU-AL10 5.1.0.227(SP12C00E226R7P8)_QSFtINNtWq7wANLUdZUERMoRCrVElIPcLSCLFXzl9Hg=_PP1758525182974A-001_20250922151306/remoteLog/charge-log/charge-log-000.tar/charge-log-000.tar]损坏', 'processflag': ''}] [2025-10-25 09:11:55,781][INFO][1:132592204510912][/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/core/service/doorman/LogUnzipper.py:69][unzip] 解压完成, 顶层路径:[/tmp/Hubble/LogkitWeb/AnalyseTask_web2EMUI/00148acc-4d1b-4893-9f8d-cf5bc53c25eb] [2025-10-25 09:11:55,781][INFO][1:132592204510912][/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/HiviewPlatform.py:48][wrapper] 当前函数 [download_unzip] 运行时间 4.81 秒 [2025-10-25 09:11:55,925] [INFO] [/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/utils/basic/LogExtractionRecordUtils.py] [line:167] [insert_analyse_runtime_data] hubble_runtime_measurement 缺失日志基础信息 type:1 data:{'model': 'download_unzip', 's': 1761354710, 'e': 1761354715, 'd': 5} [2025-10-25 09:11:56,013][INFO][1:132592204510912][/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/core/manager/LogLobbyManager.py:41][read_basics] 增加性能工厂habor_data_param参数 [2025-10-25 09:11:56,030][INFO][1:132592204510912][/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/core/HiviewAutomata.py:688][copyFile2ocean] copy2ocean tmp_path:/tmp/Hubble/LogkitWeb/AnalyseTask_web2EMUI/00148acc-4d1b-4893-9f8d-cf5bc53c25eb ocean_path:/opt/samba3/20251025/17/00148acc-4d1b-4893-9f8d-cf5bc53c25eb file_name:loginfo.json [2025-10-25 09:11:56,031][INFO][1:132592204510912][/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/core/HiviewAutomata.py:693][copyFile2ocean] !copying from /tmp/Hubble/LogkitWeb/AnalyseTask_web2EMUI/00148acc-4d1b-4893-9f8d-cf5bc53c25eb/loginfo.json to /opt/samba3/20251025/17/00148acc-4d1b-4893-9f8d-cf5bc53c25eb [2025-10-25 09:11:56,090][INFO][1:132592204510912][/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/core/HiviewAutomata.py:695][copyFile2ocean] copy status:0 [2025-10-25 09:11:56,090][INFO][1:132592204510912][/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/utils/basic/HiviewKafka.py:179][send_msg_to_web] 发送Kafka消息的Topic: [AnalyseTask_EMUI2web], msg_dict: [{'quesid': '00148acc-4d1b-4893-9f8d-cf5bc53c25eb', 'resultpath': '/opt/samba3/20251025/17/00148acc-4d1b-4893-9f8d-cf5bc53c25eb', 'result': 100, 'updatefiles': '', 'error_detail': '', 'processflag': ''}] [2025-10-25 09:11:56,435] [INFO] [/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/scripts/plugins/plugin_tools/PerformanceCommonAnalyse/fault_scene_script/database.py] [line:470] [create_sqlite_db] 本地db数据创建成功,db路径为:/tmp/Hubble/LogkitWeb/AnalyseTask_web2EMUI/00148acc-4d1b-4893-9f8d-cf5bc53c25eb/perf_data.db, 表名为:hubble_aa_perf_resource_t [2025-10-25 09:11:56,435][INFO][1:132592204510912][/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/HiviewPlatform.py:171][prepare] perf_data.db创建成功,路径为/tmp/Hubble/LogkitWeb/AnalyseTask_web2EMUI/00148acc-4d1b-4893-9f8d-cf5bc53c25eb/perf_data.db [2025-10-25 09:11:56,435][INFO][1:132592204510912][/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/core/HiviewAutomata.py:303][extract_operation_info_from_logs] 对用户使用场景及焦点窗口抽取 [2025-10-25 09:11:56,582][INFO][1:132592204510912][/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/utils/user_descriptions_info/user_logs_operation.py:815][start_extraction] user_operation_sequence start_extraction... [2025-10-25 09:11:56,583][INFO][1:132592204510912][/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/utils/user_descriptions_info/user_logs_operation.py:824][start_extraction] 当前故障时间为:20250922151306 [2025-10-25 09:11:56,583][INFO][1:132592204510912][/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/utils/user_descriptions_info/user_logs_operation.py:829][start_extraction] 当前年份为:2025 [2025-10-25 09:11:56,583][INFO][1:132592204510912][/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/utils/user_descriptions_info/user_logs_operation.py:69][get_file] ======>获取日志文件 [2025-10-25 09:11:56,610][INFO][1:132592204510912][/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/utils/user_descriptions_info/user_logs_operation.py:162][find_log] ======>获取相关日志 [2025-10-25 09:11:56,616][INFO][1:132592204510912][/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/utils/user_descriptions_info/user_logs_operation.py:151][get_scene_sequence_by_focus] 通过focus关键字未找到场景数据,通过wm关键字查询场景数据 [2025-10-25 09:11:56,626] [INFO] [/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/scripts/plugins/plugin_tools/PerformanceCommonAnalyse/PerfLogExtractorUtils.py] [line:152] [insert_Resources_data] 开始往数据库发送['场景分析资源']数据 [2025-10-25 09:11:56,920][INFO][1:132592204510912][/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/utils/basic/HiviewKafka.py:126][producer_batch_send] kafka发送时间:0.2942068576812744 [2025-10-25 09:11:56,922] [INFO] [/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/scripts/plugins/plugin_tools/PerformanceCommonAnalyse/PerfLogExtractorUtils.py] [line:165] [insert_Resources_data] ['场景分析资源']发送数据量:1 [2025-10-25 09:11:56,923] [INFO] [/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/scripts/plugins/plugin_tools/PerformanceCommonAnalyse/PerfLogExtractorUtils.py] [line:168] [insert_Resources_data] type_id为7_6,需要存入到本地perf_data.db中 [2025-10-25 09:11:56,958] [INFO] [/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/scripts/plugins/plugin_tools/PerformanceCommonAnalyse/fault_scene_script/database.py] [line:477] [insert_db_data] type_id:7_6 数据插入本地PerfDB成功 插入行数为:1 [2025-10-25 09:11:56,959] [INFO] [/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/scripts/plugins/plugin_tools/PerformanceCommonAnalyse/PerfLogExtractorUtils.py] [line:152] [insert_Resources_data] 开始往数据库发送['场景分析资源']数据 [2025-10-25 09:11:57,165][INFO][1:132592204510912][/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/utils/basic/HiviewKafka.py:126][producer_batch_send] kafka发送时间:0.20565104484558105 [2025-10-25 09:11:57,167] [INFO] [/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/scripts/plugins/plugin_tools/PerformanceCommonAnalyse/PerfLogExtractorUtils.py] [line:165] [insert_Resources_data] ['场景分析资源']发送数据量:10 [2025-10-25 09:11:57,167] [INFO] [/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/scripts/plugins/plugin_tools/PerformanceCommonAnalyse/PerfLogExtractorUtils.py] [line:168] [insert_Resources_data] type_id为7_6,需要存入到本地perf_data.db中 [2025-10-25 09:11:57,214] [INFO] [/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/scripts/plugins/plugin_tools/PerformanceCommonAnalyse/fault_scene_script/database.py] [line:477] [insert_db_data] type_id:7_6 数据插入本地PerfDB成功 插入行数为:10 [2025-10-25 09:11:57,214] [INFO] [/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/scripts/plugins/plugin_tools/PerformanceCommonAnalyse/PerfLogExtractorUtils.py] [line:152] [insert_Resources_data] 开始往数据库发送['原始日志关键字校验']数据 [2025-10-25 09:11:57,406][INFO][1:132592204510912][/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/utils/basic/HiviewKafka.py:126][producer_batch_send] kafka发送时间:0.19133424758911133 [2025-10-25 09:11:57,407] [INFO] [/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/scripts/plugins/plugin_tools/PerformanceCommonAnalyse/PerfLogExtractorUtils.py] [line:165] [insert_Resources_data] ['原始日志关键字校验']发送数据量:2 [2025-10-25 09:11:57,407] [INFO] [/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/scripts/plugins/plugin_tools/PerformanceCommonAnalyse/PerfLogExtractorUtils.py] [line:185] [insert_Resources_data] type_id为36,不需要存入到本地perf_data.db中 [2025-10-25 09:11:57,407][INFO][1:132592204510912][/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/utils/user_descriptions_info/user_logs_operation.py:778][check_if_screen_record_exist] 提前提取录屏信息 [2025-10-25 09:11:57,437][INFO][1:132592204510912][/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/HiviewPlatform.py:175][prepare] 提取用户操作序列耗时:1.0526819229125977 [2025-10-25 09:11:57,437][INFO][1:132592204510912][/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/core/service/waiter/TaskAssembler.py:133][check_extraction_analyse] check_extraction_analyse cur key is SYSTRACE_EXTRACTION_ANALYSE [2025-10-25 09:11:57,440][INFO][1:132592204510912][/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/core/HiviewAutomata.py:688][copyFile2ocean] copy2ocean tmp_path:/tmp/Hubble/LogkitWeb/AnalyseTask_web2EMUI/00148acc-4d1b-4893-9f8d-cf5bc53c25eb ocean_path:/opt/samba3/20251025/17/00148acc-4d1b-4893-9f8d-cf5bc53c25eb file_name:loginfo.json [2025-10-25 09:11:57,441][INFO][1:132592204510912][/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/core/HiviewAutomata.py:693][copyFile2ocean] !copying from /tmp/Hubble/LogkitWeb/AnalyseTask_web2EMUI/00148acc-4d1b-4893-9f8d-cf5bc53c25eb/loginfo.json to /opt/samba3/20251025/17/00148acc-4d1b-4893-9f8d-cf5bc53c25eb [2025-10-25 09:11:57,467][INFO][1:132592204510912][/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/core/HiviewAutomata.py:695][copyFile2ocean] copy status:0 [2025-10-25 09:11:57,468][INFO][1:132592204510912][/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/utils/basic/HiviewKafka.py:179][send_msg_to_web] 发送Kafka消息的Topic: [AnalyseTask_EMUI2web], msg_dict: [{'quesid': '00148acc-4d1b-4893-9f8d-cf5bc53c25eb', 'resultpath': '/opt/samba3/20251025/17/00148acc-4d1b-4893-9f8d-cf5bc53c25eb', 'result': 100, 'updatefiles': '', 'error_detail': '', 'processflag': ''}] [2025-10-25 09:11:57,781] [INFO] [/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/core/service/frontdesk/PluginValidation.py] [line:90] [download_py_script] 按绝对路径拷贝脚本文件[/opt/samba3/ScriptValidation/20251025/SPPQE9UW_eqr7plLp_stability_script_third_donghu.py] [2025-10-25 09:11:57,816] [INFO] [/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/core/service/frontdesk/PluginValidation.py] [line:98] [download_py_script] 成功拷贝文件[eqr7plLp_stability_script_third_donghu.py], 下载路径[/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/scripts/plugins/plugin_test/eqr7plLp_stability_script_third_donghu.py] [2025-10-25 09:11:57,823][INFO][1:132592204510912][/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/core/service/frontdesk/LogCheckin.py:132][single_test_register] Reload [<module 'Hubble.scripts.plugins.plugin_test.eqr7plLp_stability_script_third_donghu' from '/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/scripts/plugins/plugin_test/eqr7plLp_stability_script_third_donghu.py'>]... [2025-10-25 09:11:57,825][INFO][1:132592204510912][/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/core/service/frontdesk/LogCheckin.py:139][single_test_register] 测试Plugin[eqr7plLp_stability_script_third_donghu] is ready. [2025-10-25 09:11:57,825] [INFO] [/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/scripts/plugins/plugin_test/eqr7plLp_stability_script_third_donghu.py] [line:430] [plugin_preprocess] 这是预处理函数? [2025-10-25 09:11:57,826][INFO][1:132592204510912][/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/HiviewPlatform.py:48][wrapper] 当前函数 [prepare] 运行时间 1.90 秒 [2025-10-25 09:11:57,974] [INFO] [/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/utils/basic/LogExtractionRecordUtils.py] [line:167] [insert_analyse_runtime_data] hubble_runtime_measurement 缺失日志基础信息 type:1 data:{'model': 'prepare', 's': 1761354715, 'e': 1761354717, 'd': 2} [2025-10-25 09:11:58,034] [INFO] [/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/core/manager/LogDeserializeManager.py] [line:114] [deserialize_thplog] /opt/samba3/deserializer/deserialize_util/hostlogpull '/tmp/Hubble/LogkitWeb/AnalyseTask_web2EMUI/00148acc-4d1b-4893-9f8d-cf5bc53c25eb/RemoteLog_commercial_LMR-AL10_LMU-AL10 5.1.0.227(SP12C00E226R7P8)_QSFtINNtWq7wANLUdZUERMoRCrVElIPcLSCLFXzl9Hg=_PP1758525182974A-001_20250922151306/remoteLog/thplog/2025.09.22_15.13.06.111_I0_logtofile.thplog' [2025-10-25 09:11:58,378] [INFO] [/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/core/manager/LogDeserializeManager.py] [line:116] [deserialize_thplog] ./hostlogpull status:0 [2025-10-25 09:11:58,405] [INFO] [/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/core/manager/LogDeserializeManager.py] [line:1048] [decrypt_isp_log] strart decrypt_isp_log ! [2025-10-25 09:11:58,430] [INFO] [/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/core/manager/LogDeserializeManager.py] [line:1088] [decrypt_isp_log] end decrypt_isp_log ! [2025-10-25 09:11:58,430] [INFO] [/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/core/manager/LogDeserializeManager.py] [line:981] [deserialize_bt_hilog] start deserialize_bt_hilog ! [2025-10-25 09:11:58,458] [INFO] [/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/core/manager/LogDeserializeManager.py] [line:994] [deserialize_bt_hilog] hilog_file_paths=['/tmp/Hubble/LogkitWeb/AnalyseTask_web2EMUI/00148acc-4d1b-4893-9f8d-cf5bc53c25eb/RemoteLog_commercial_LMR-AL10_LMU-AL10 5.1.0.227(SP12C00E226R7P8)_QSFtINNtWq7wANLUdZUERMoRCrVElIPcLSCLFXzl9Hg=_PP1758525182974A-001_20250922151306/remoteLog/hilog/hilog.000.20250922-151306.txt', '/tmp/Hubble/LogkitWeb/AnalyseTask_web2EMUI/00148acc-4d1b-4893-9f8d-cf5bc53c25eb/RemoteLog_commercial_LMR-AL10_LMU-AL10 5.1.0.227(SP12C00E226R7P8)_QSFtINNtWq7wANLUdZUERMoRCrVElIPcLSCLFXzl9Hg=_PP1758525182974A-001_20250922151306/remoteLog/hilog/hilog.008.20250914-183914.txt', '/tmp/Hubble/LogkitWeb/AnalyseTask_web2EMUI/00148acc-4d1b-4893-9f8d-cf5bc53c25eb/RemoteLog_commercial_LMR-AL10_LMU-AL10 5.1.0.227(SP12C00E226R7P8)_QSFtINNtWq7wANLUdZUERMoRCrVElIPcLSCLFXzl9Hg=_PP1758525182974A-001_20250922151306/remoteLog/hilog/hilog.007.20250831-010813.txt'] [2025-10-25 09:11:58,458] [INFO] [/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/core/manager/LogDeserializeManager.py] [line:995] [deserialize_bt_hilog] bt_file_paths=['/tmp/Hubble/LogkitWeb/AnalyseTask_web2EMUI/00148acc-4d1b-4893-9f8d-cf5bc53c25eb/RemoteLog_commercial_LMR-AL10_LMU-AL10 5.1.0.227(SP12C00E226R7P8)_QSFtINNtWq7wANLUdZUERMoRCrVElIPcLSCLFXzl9Hg=_PP1758525182974A-001_20250922151306/remoteLog/bt/btsnoop_hci_20250922_122333.log', '/tmp/Hubble/LogkitWeb/AnalyseTask_web2EMUI/00148acc-4d1b-4893-9f8d-cf5bc53c25eb/RemoteLog_commercial_LMR-AL10_LMU-AL10 5.1.0.227(SP12C00E226R7P8)_QSFtINNtWq7wANLUdZUERMoRCrVElIPcLSCLFXzl9Hg=_PP1758525182974A-001_20250922151306/remoteLog/bt/btsnoop_hci_20250922_043716.log'] [2025-10-25 09:11:58,458][ERROR][1:132592204510912][/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/core/HiviewAutomata.py:170][deserialize] 原始日志文件解析失败! Traceback (most recent call last): File "/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/core/HiviewAutomata.py", line 168, in deserialize self.log_deserialize_manager.deserialize(self.uuid_path, first) File "/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/core/manager/LogDeserializeManager.py", line 85, in deserialize self.deserialize_bt_hilog(uuid_path) File "/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/core/manager/LogDeserializeManager.py", line 1005, in deserialize_bt_hilog shutil.copy(f, dst_hilog + os.sep + hilog_file_name) File "/usr/local/lib/python3.7/shutil.py", line 248, in copy copyfile(src, dst, follow_symlinks=follow_symlinks) File "/usr/local/lib/python3.7/shutil.py", line 121, in copyfile with open(dst, 'wb') as fdst: FileNotFoundError: [Errno 2] No such file or directory: '/tmp/Hubble/LogkitWeb/AnalyseTask_web2EMUI/00148acc-4d1b-4893-9f8d-cf5bc53c25eb/hci_tool/input/hilog/hilog.000.20250922-151306.txt' [2025-10-25 09:11:58,460][INFO][1:132592204510912][/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/HiviewPlatform.py:48][wrapper] 当前函数 [deserialize] 运行时间 0.49 秒 [2025-10-25 09:11:58,606] [INFO] [/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/utils/basic/LogExtractionRecordUtils.py] [line:169] [insert_analyse_runtime_data] 开始往数据库发送 1 数据 [2025-10-25 09:11:58,799] [INFO] [/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/utils/basic/LogExtractionRecordUtils.py] [line:177] [insert_analyse_runtime_data] 发送 【1】类型 数据量:1 [2025-10-25 09:11:58,800][INFO][1:132592204510912][/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/core/service/waiter/TaskAssembler.py:185][generate_task_queue] adding task FILTER_HISTORY_LOGS [2025-10-25 09:11:58,800][INFO][1:132592204510912][/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/core/service/waiter/TaskAssembler.py:194][generate_task_queue] adding task ANALYSIS_ONLY [2025-10-25 09:11:58,801][INFO][1:132592204510912][/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/HiviewPlatform.py:48][wrapper] 当前函数 [run_before] 运行时间 0.00 秒 [2025-10-25 09:11:58,949] [INFO] [/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/utils/basic/LogExtractionRecordUtils.py] [line:169] [insert_analyse_runtime_data] 开始往数据库发送 1 数据 [2025-10-25 09:11:59,139] [INFO] [/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/utils/basic/LogExtractionRecordUtils.py] [line:177] [insert_analyse_runtime_data] 发送 【1】类型 数据量:1 [2025-10-25 09:11:59,140][INFO][1:132592204510912][/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/utils/basic/HiviewKafka.py:179][send_msg_to_web] 发送Kafka消息的Topic: [AnalyseTask_EMUI2web], msg_dict: [{'quesid': '00148acc-4d1b-4893-9f8d-cf5bc53c25eb', 'resultpath': '/opt/samba3/20251025/17/00148acc-4d1b-4893-9f8d-cf5bc53c25eb', 'result': -4, 'updatefiles': '', 'error_detail': '', 'processflag': ''}] [2025-10-25 09:11:59,450][DEBUG][1:132592204510912][/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/core/manager/LogWaiterManager.py:92][run_task_queue] orgfile_path : /opt/samba3/of25/20251025/00148acc-4d1b-4893-9f8d-cf5bc53c25eb [2025-10-25 09:11:59,451][WARNING][1:132592204510912][/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/core/service/waiter/TaskRunner.py:104][run] 执行任务: [FILTER_HISTORY_LOGS] [2025-10-25 09:11:59,593][INFO][1:132592204510912][/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/core/service/waiter/TaskRunner.py:164][filter_history_logs] start filter_history_logs [2025-10-25 09:11:59,669][INFO][1:132592204510912][/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/core/service/waiter/TaskRunner.py:180][filter_history_logs] end filter_history_logs [2025-10-25 09:11:59,669] [INFO] [/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/utils/basic/LogExtractionRecordUtils.py] [line:169] [insert_analyse_runtime_data] 开始往数据库发送 2 数据 [2025-10-25 09:11:59,964] [INFO] [/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/utils/basic/LogExtractionRecordUtils.py] [line:177] [insert_analyse_runtime_data] 发送 【2】类型 数据量:1 [2025-10-25 09:11:59,965][WARNING][1:132592204510912][/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/core/service/waiter/TaskRunner.py:104][run] 执行任务: [ANALYSIS_ONLY] [2025-10-25 09:12:00,256][INFO][1:132592204510912][/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/utils/basic/HiviewKafka.py:179][send_msg_to_web] 发送Kafka消息的Topic: [AnalyseTask_EMUI2web], msg_dict: [{'quesid': '00148acc-4d1b-4893-9f8d-cf5bc53c25eb', 'resultpath': '/opt/samba3/20251025/17/00148acc-4d1b-4893-9f8d-cf5bc53c25eb', 'result': -6, 'updatefiles': '', 'error_detail': '', 'processflag': 'start_locateanalysis'}] [2025-10-25 09:12:00,548][INFO][1:132592204510912][/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/core/service/waiter/analysis/LogAnalyst.py:95][start_analysis] 插件[eqr7plLp_stability_script_third_donghu]的单日志分析逻辑开始执行 [2025-10-25 09:12:00,549] [INFO] [/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/scripts/plugins/plugin_test/eqr7plLp_stability_script_third_donghu.py] [line:468] [run_plugin_single] 这是测试插件!uuid_log_path=[/tmp/Hubble/LogkitWeb/AnalyseTask_web2EMUI/00148acc-4d1b-4893-9f8d-cf5bc53c25eb], log_path=[/tmp/Hubble/LogkitWeb/AnalyseTask_web2EMUI/00148acc-4d1b-4893-9f8d-cf5bc53c25eb], param_dict=[{'common_info': {'syn_id': '', 'source_description': '', 'analysis_tool': ['Hubble'], 'extended_info': {}, 'happen_time': '', 'field': 'Unknown', 'field2': '', 'betano': '', 'task_class': '', 'source': 'LogkitWeb', 'version': 'LMR-AL10 LMU-AL10 5.1.0.227(SP12C00E226R7P8)', 'dtsno': '', 'eventid': '', 'product': 'LMR-AL10', 'log_download_list': [[['RemoteLog_commercial_LMR-AL10_LMU-AL10 5.1.0.227(SP12C00E226R7P8)_QSFtINNtWq7wANLUdZUERMoRCrVElIPcLSCLFXzl9Hg=_PP1758525182974A-001_20250922151306.zip', 'https://aresocean.huawei.com/hubble/hubblesvc/hubbleportal/report/downloadLogByDate?fileName=7ccd3e2f0ae6413da4ca75da15c87571_RemoteLog_commercial_LMR-AL10_LMU-AL10+5.1.0.227%28SP12C00E226R7P8%29_QSFtINNtWq7wANLUdZUERMoRCrVElIPcLSCLFXzl9Hg%3D_PP1758525182974A-001_20250922151306.zip&date=20251025', '']]], 'errorcode1': '', 'errorcode3': '', 'errorcode2': '', 'errorcode4': '', 'batch_or_not': False, 'logsource': 'iDebug', 'task_uuid': '00148acc-4d1b-4893-9f8d-cf5bc53c25eb', 'username': 'HubbleTest', 'logtype': '', 'sn': 'QSFtINNtWq7wANLUdZUERMoRCrVElIPcLSCLFXzl9Hg=', 'beta_com': 'beta', 'run_by_auto': True, 'issue_id': '', 'log_source': 'iDebug', 'datetime_str': '20250922151306', 'device': 'PHONE', 'use_scope': '', 'is_pro': True, 'happen_time_unixtime': 0, 'happen_date_sta': 0, 'happen_date_end': 99999999, 'Graphics_path': '/tmp/Hubble/LogkitWeb/AnalyseTask_web2EMUI/00148acc-4d1b-4893-9f8d-cf5bc53c25eb/Graphics.json'}, 'user_defined_files': '/tmp/Hubble/LogkitWeb/AnalyseTask_web2EMUI/00148acc-4d1b-4893-9f8d-cf5bc53c25eb/user_defined_files/eqr7plLp_stability_script_third_donghu', 'timeout_info': [], 'faulttag_has_result': False}] [2025-10-25 09:12:00,579][ERROR][1:132592204510912][/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/core/service/waiter/analysis/LogAnalyst.py:152][start_analysis] 插件[eqr7plLp_stability_script_third_donghu]的分析逻辑失败, ['PluginClass' object has no attribute 'log_str_to_datetime'] Traceback (most recent call last): File "/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/core/service/waiter/analysis/LogAnalyst.py", line 117, in start_analysis plugin_single_result = plugin_modules[plugin_name].run_plugin_single(uuid_path, log_path, plugin_params) # analysis File "/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/scripts/plugins/plugin_test/eqr7plLp_stability_script_third_donghu.py", line 513, in run_plugin_single app_end_time = self.log_str_to_datetime(app_end) AttributeError: 'PluginClass' object has no attribute 'log_str_to_datetime' [2025-10-25 09:12:00,580] [INFO] [/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/utils/basic/LogExtractionRecordUtils.py] [line:142] [insert_task_result_data] 开始往数据库发送0数据 [2025-10-25 09:12:00,871][INFO][1:132592204510912][/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/utils/basic/HiviewKafka.py:126][producer_batch_send] kafka发送时间:0.2899346351623535 [2025-10-25 09:12:00,872] [INFO] [/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/utils/basic/LogExtractionRecordUtils.py] [line:156] [insert_task_result_data] 发送 【0】类型 数据量:1 [2025-10-25 09:12:00,872] [INFO] [/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/utils/basic/LogExtractionRecordUtils.py] [line:119] [insert_fault_analyse_data] 开始往数据库发送analyse_script_result数据 [2025-10-25 09:12:01,377][INFO][1:132592204510912][/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/utils/basic/HiviewKafka.py:126][producer_batch_send] kafka发送时间:0.5044019222259521 [2025-10-25 09:12:01,379] [INFO] [/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/utils/basic/LogExtractionRecordUtils.py] [line:130] [insert_fault_analyse_data] 发送 【analyse_script_result】类型 数据量:1 [2025-10-25 09:12:01,379] [INFO] [/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/utils/basic/LogExtractionRecordUtils.py] [line:169] [insert_analyse_runtime_data] 开始往数据库发送 3 数据 [2025-10-25 09:12:01,673] [INFO] [/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/utils/basic/LogExtractionRecordUtils.py] [line:177] [insert_analyse_runtime_data] 发送 【3】类型 数据量:1 [2025-10-25 09:12:01,674][INFO][1:132592204510912][/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/core/service/waiter/TaskRunner.py:214][log_analysis_only] !copying from /tmp/Hubble/LogkitWeb/AnalyseTask_web2EMUI/00148acc-4d1b-4893-9f8d-cf5bc53c25eb/loginfo.json to /opt/samba3/20251025/17/00148acc-4d1b-4893-9f8d-cf5bc53c25eb [2025-10-25 09:12:01,702][INFO][1:132592204510912][/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/core/service/waiter/TaskRunner.py:215][log_analysis_only] copy status: 0 [2025-10-25 09:12:01,703][INFO][1:132592204510912][/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/core/service/waiter/TaskRunner.py:214][log_analysis_only] !copying from /tmp/Hubble/LogkitWeb/AnalyseTask_web2EMUI/00148acc-4d1b-4893-9f8d-cf5bc53c25eb/00148acc-4d1b-4893-9f8d-cf5bc53c25eb.log to /opt/samba3/20251025/17/00148acc-4d1b-4893-9f8d-cf5bc53c25eb [2025-10-25 09:12:01,720][INFO][1:132592204510912][/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/core/service/waiter/TaskRunner.py:215][log_analysis_only] copy status: 0 [2025-10-25 09:12:01,721][INFO][1:132592204510912][/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/core/service/waiter/TaskRunner.py:217][log_analysis_only] Not A File: /tmp/Hubble/LogkitWeb/AnalyseTask_web2EMUI/00148acc-4d1b-4893-9f8d-cf5bc53c25eb/RemoteLog_commercial_LMR-AL10_LMU-AL10 5.1.0.227(SP12C00E226R7P8)_QSFtINNtWq7wANLUdZUERMoRCrVElIPcLSCLFXzl9Hg=_PP1758525182974A-001_20250922151306 [2025-10-25 09:12:01,721][INFO][1:132592204510912][/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/core/service/waiter/TaskRunner.py:214][log_analysis_only] !copying from /tmp/Hubble/LogkitWeb/AnalyseTask_web2EMUI/00148acc-4d1b-4893-9f8d-cf5bc53c25eb/unzip_status.json to /opt/samba3/20251025/17/00148acc-4d1b-4893-9f8d-cf5bc53c25eb [2025-10-25 09:12:01,737][INFO][1:132592204510912][/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/core/service/waiter/TaskRunner.py:215][log_analysis_only] copy status: 0 [2025-10-25 09:12:01,737][INFO][1:132592204510912][/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/core/service/waiter/TaskRunner.py:214][log_analysis_only] !copying from /tmp/Hubble/LogkitWeb/AnalyseTask_web2EMUI/00148acc-4d1b-4893-9f8d-cf5bc53c25eb/perf_data.db to /opt/samba3/20251025/17/00148acc-4d1b-4893-9f8d-cf5bc53c25eb [2025-10-25 09:12:01,753][INFO][1:132592204510912][/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/core/service/waiter/TaskRunner.py:215][log_analysis_only] copy status: 0 [2025-10-25 09:12:01,753][INFO][1:132592204510912][/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/core/service/waiter/TaskRunner.py:214][log_analysis_only] !copying from /tmp/Hubble/LogkitWeb/AnalyseTask_web2EMUI/00148acc-4d1b-4893-9f8d-cf5bc53c25eb/task_info.json to /opt/samba3/20251025/17/00148acc-4d1b-4893-9f8d-cf5bc53c25eb [2025-10-25 09:12:01,779][INFO][1:132592204510912][/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/core/service/waiter/TaskRunner.py:215][log_analysis_only] copy status: 0 [2025-10-25 09:12:01,780][INFO][1:132592204510912][/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/core/service/waiter/TaskRunner.py:214][log_analysis_only] !copying from /tmp/Hubble/LogkitWeb/AnalyseTask_web2EMUI/00148acc-4d1b-4893-9f8d-cf5bc53c25eb/Graphics.json to /opt/samba3/20251025/17/00148acc-4d1b-4893-9f8d-cf5bc53c25eb [2025-10-25 09:12:01,793][INFO][1:132592204510912][/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/core/service/waiter/TaskRunner.py:215][log_analysis_only] copy status: 0 [2025-10-25 09:12:01,793][INFO][1:132592204510912][/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/core/service/waiter/TaskRunner.py:217][log_analysis_only] Not A File: /tmp/Hubble/LogkitWeb/AnalyseTask_web2EMUI/00148acc-4d1b-4893-9f8d-cf5bc53c25eb/user_defined_files [2025-10-25 09:12:01,793][INFO][1:132592204510912][/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/core/service/waiter/TaskRunner.py:214][log_analysis_only] !copying from /tmp/Hubble/LogkitWeb/AnalyseTask_web2EMUI/00148acc-4d1b-4893-9f8d-cf5bc53c25eb/faultdiag_plugins.json to /opt/samba3/20251025/17/00148acc-4d1b-4893-9f8d-cf5bc53c25eb [2025-10-25 09:12:01,812][INFO][1:132592204510912][/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/core/service/waiter/TaskRunner.py:215][log_analysis_only] copy status: 0 [2025-10-25 09:12:01,893][INFO][1:132592204510912][/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/core/service/waiter/analysis/LogAnalyst.py:203][analysis_end] 已拷贝: [/opt/samba3/20251025/17/00148acc-4d1b-4893-9f8d-cf5bc53c25eb/faultdiag_plugins.json] [2025-10-25 09:12:01,894][INFO][1:132592204510912][/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/utils/basic/HiviewKafka.py:179][send_msg_to_web] 发送Kafka消息的Topic: [AnalyseTask_EMUI2web], msg_dict: [{'quesid': '00148acc-4d1b-4893-9f8d-cf5bc53c25eb', 'resultpath': '/opt/samba3/20251025/17/00148acc-4d1b-4893-9f8d-cf5bc53c25eb', 'result': 102, 'updatefiles': '', 'error_detail': '', 'processflag': ''}] [2025-10-25 09:12:02,189] [INFO] [/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/utils/basic/LogExtractionRecordUtils.py] [line:169] [insert_analyse_runtime_data] 开始往数据库发送 2 数据 [2025-10-25 09:12:02,386] [INFO] [/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/utils/basic/LogExtractionRecordUtils.py] [line:177] [insert_analyse_runtime_data] 发送 【2】类型 数据量:1 [2025-10-25 09:12:02,387][WARNING][1:132592204510912][/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/core/service/waiter/TaskRunner.py:104][run] 执行任务: [COPY_USER_DEFINED_FILES] [2025-10-25 09:12:02,561][INFO][1:132592204510912][/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/core/service/waiter/TaskRunner.py:183][copy_user_defined_files] start user_defined_files [2025-10-25 09:12:02,601][INFO][1:132592204510912][/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/core/service/waiter/TaskRunner.py:194][copy_user_defined_files] copy status: 0 [2025-10-25 09:12:02,601][INFO][1:132592204510912][/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/core/service/waiter/TaskRunner.py:197][copy_user_defined_files] end user_defined_files [2025-10-25 09:12:02,601] [INFO] [/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/utils/basic/LogExtractionRecordUtils.py] [line:169] [insert_analyse_runtime_data] 开始往数据库发送 2 数据 [2025-10-25 09:12:02,901] [INFO] [/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/utils/basic/LogExtractionRecordUtils.py] [line:177] [insert_analyse_runtime_data] 发送 【2】类型 数据量:1 [2025-10-25 09:12:02,902][WARNING][1:132592204510912][/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/core/service/waiter/TaskRunner.py:104][run] 执行任务: [RESULT_PROCES_COMMONUTILS] [2025-10-25 09:12:03,047][INFO][1:132592204510912][/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/core/service/waiter/TaskRunner.py:124][result_proces_commonutils] start RESULT_PROCES_COMMONUTILS [2025-10-25 09:12:03,049] [INFO] [/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/scripts/plugins/plugin_tools/ResultProcesCommonUtils/ResultProcesCommonUtils.py] [line:28] [start_analysis] ResultProcesCommonUtils start_analysis ... [2025-10-25 09:12:03,049][INFO][1:132592204510912][/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/core/service/waiter/TaskRunner.py:129][result_proces_commonutils] end RESULT_PROCES_COMMONUTILS [2025-10-25 09:12:03,049] [INFO] [/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/utils/basic/LogExtractionRecordUtils.py] [line:169] [insert_analyse_runtime_data] 开始往数据库发送 2 数据 [2025-10-25 09:12:03,347] [INFO] [/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/utils/basic/LogExtractionRecordUtils.py] [line:177] [insert_analyse_runtime_data] 发送 【2】类型 数据量:1 [2025-10-25 09:12:03,347][INFO][1:132592204510912][/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/core/manager/LogWaiterManager.py:120][run_task_queue] all tasks finish [2025-10-25 09:12:03,347][INFO][1:132592204510912][/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/HiviewPlatform.py:232][run] 分析任务主题运行结束,进入收尾工作。 [2025-10-25 09:12:03,347][INFO][1:132592204510912][/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/HiviewPlatform.py:48][wrapper] 当前函数 [run] 运行时间 4.21 秒 [2025-10-25 09:12:03,492] [INFO] [/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/utils/basic/LogExtractionRecordUtils.py] [line:169] [insert_analyse_runtime_data] 开始往数据库发送 1 数据 [2025-10-25 09:12:03,786] [INFO] [/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/utils/basic/LogExtractionRecordUtils.py] [line:177] [insert_analyse_runtime_data] 发送 【1】类型 数据量:1 [2025-10-25 09:12:03,786][INFO][1:132592204510912][/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/HiviewPlatform.py:125][start_analysis] ---------------------------------------------- [2025-10-25 09:12:03,787][INFO][1:132592204510912][/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/HiviewPlatform.py:126][start_analysis] 插件运行耗时:4.647161483764648 [2025-10-25 09:12:03,787][INFO][1:132592204510912][/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/HiviewPlatform.py:127][start_analysis] ---------------------------------------------- [2025-10-25 09:12:03,787] [INFO] [/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/core/service/logistics/ResultAggregator.py] [line:57] [result_aggregation] {} [2025-10-25 09:12:03,787] [INFO] [/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/core/service/logistics/ResultAggregator.py] [line:65] [result_aggregation] 执行插件[eqr7plLp_stability_script_third_donghu]的结果汇总功能 [2025-10-25 09:12:03,788] [INFO] [/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/scripts/plugins/plugin_test/eqr7plLp_stability_script_third_donghu.py] [line:726] [plugin_result_refinement] 这是分析结果精加工函数 [2025-10-25 09:12:03,788] [ERROR] [/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/core/service/logistics/ResultAggregator.py] [line:34] [get_user_defined_device] 设备类型无法从homepage_info中获取 'only_run_device' [2025-10-25 09:12:03,789][INFO][1:132592204510912][/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/HiviewPlatform.py:48][wrapper] 当前函数 [run_after] 运行时间 0.00 秒 [2025-10-25 09:12:03,930] [INFO] [/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/utils/basic/LogExtractionRecordUtils.py] [line:169] [insert_analyse_runtime_data] 开始往数据库发送 1 数据 [2025-10-25 09:12:04,123] [INFO] [/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/utils/basic/LogExtractionRecordUtils.py] [line:177] [insert_analyse_runtime_data] 发送 【1】类型 数据量:1 [2025-10-25 09:12:04,123] [ERROR] [/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/core/service/logistics/LogReporter.py] [line:39] [generate_report] 分析结果存入报告生成数据库失败[[Errno 2] No such file or directory: '/tmp/Hubble/LogkitWeb/AnalyseTask_web2EMUI/00148acc-4d1b-4893-9f8d-cf5bc53c25eb/duplicate.json'] [2025-10-25 09:12:04,252] [INFO] [/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/core/service/logistics/ResultSaver.py] [line:35] [save_final_results] Plugins结果[faultdiag_plugins.json]保存成功 [2025-10-25 09:12:04,259] [INFO] [/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/core/service/logistics/ResultSaver.py] [line:103] [plugin_result2loginfo] 插件没有一级定界结果 [2025-10-25 09:12:04,259] [INFO] [/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/core/service/logistics/ResultSaver.py] [line:139] [refill_loginfo] Refill loginfo OK. [2025-10-25 09:12:04,260][INFO][1:132592204510912][/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/HiviewPlatform.py:247][save] 结果保存成功!(非保存,只做其他修改) [2025-10-25 09:12:04,260][INFO][1:132592204510912][/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/HiviewPlatform.py:48][wrapper] 当前函数 [save] 运行时间 0.14 秒 [2025-10-25 09:12:04,405] [INFO] [/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/utils/basic/LogExtractionRecordUtils.py] [line:169] [insert_analyse_runtime_data] 开始往数据库发送 1 数据 [2025-10-25 09:12:04,705] [INFO] [/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/utils/basic/LogExtractionRecordUtils.py] [line:177] [insert_analyse_runtime_data] 发送 【1】类型 数据量:1 [2025-10-25 09:12:04,705][INFO][1:132592204510912][/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/HiviewPlatform.py:130][start_analysis] 此次日志分析任务结束。 [2025-10-25 09:12:04,706][INFO][1:132592204510912][/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/HiviewPlatform.py:131][start_analysis] 结果路径是: None [2025-10-25 09:12:04,706][INFO][1:132592204510912][/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/HiviewPlatform.py:48][wrapper] 当前函数 [start_analysis] 运行时间 14.17 秒 [2025-10-25 09:12:04,848] [INFO] [/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/utils/basic/LogExtractionRecordUtils.py] [line:169] [insert_analyse_runtime_data] 开始往数据库发送 0 数据 [2025-10-25 09:12:05,146] [INFO] [/usr/src/app/aresdeepmindhubble-6.0/aresdeepmindhubble/Hubble/utils/basic/LogExtractionRecordUtils.py] [line:177] [insert_analyse_runtime_data] 发送 【0】类型 数据量:1 返回完整代码,如果太多生成不了,就只修改错误部分,请跟我说一下需要修改的代码是哪些,再说一下如何修改
10-26
[root@yfw ~]# cd /www/wwwroot/szrengjing.com [root@yfw szrengjing.com]# curl -v \ > -H "Content-Type: text/xml" \ > -d '<body rid="123456789" xmlns="http://jabber.org/protocol/httpbind"/>' \ > https://zxkf.szrengjing.com/http-bind * Trying 124.71.230.244... * TCP_NODELAY set * Connected to zxkf.szrengjing.com (124.71.230.244) port 443 (#0) * ALPN, offering h2 * ALPN, offering http/1.1 * successfully set certificate verify locations: * CAfile: /etc/pki/tls/certs/ca-bundle.crt CApath: none * TLSv1.3 (OUT), TLS handshake, Client hello (1): * TLSv1.3 (IN), TLS handshake, Server hello (2): * TLSv1.3 (IN), TLS handshake, [no content] (0): * TLSv1.3 (IN), TLS handshake, Encrypted Extensions (8): * TLSv1.3 (IN), TLS handshake, [no content] (0): * TLSv1.3 (IN), TLS handshake, Certificate (11): * TLSv1.3 (IN), TLS handshake, [no content] (0): * TLSv1.3 (IN), TLS handshake, CERT verify (15): * TLSv1.3 (IN), TLS handshake, [no content] (0): * TLSv1.3 (IN), TLS handshake, Finished (20): * TLSv1.3 (OUT), TLS change cipher, Change cipher spec (1): * TLSv1.3 (OUT), TLS handshake, [no content] (0): * TLSv1.3 (OUT), TLS handshake, Finished (20): * SSL connection using TLSv1.3 / TLS_AES_256_GCM_SHA384 * ALPN, server accepted to use h2 * Server certificate: * subject: CN=zxkf.szrengjing.com * start date: Oct 13 03:37:58 2025 GMT * expire date: Jan 11 03:37:57 2026 GMT * subjectAltName: host "zxkf.szrengjing.com" matched cert's "zxkf.szrengjing.com" * issuer: C=US; O=Let's Encrypt; CN=R12 * SSL certificate verify ok. * Using HTTP2, server supports multi-use * Connection state changed (HTTP/2 confirmed) * Copying HTTP/2 data in stream buffer to connection buffer after upgrade: len=0 * TLSv1.3 (OUT), TLS app data, [no content] (0): * TLSv1.3 (OUT), TLS app data, [no content] (0): * TLSv1.3 (OUT), TLS app data, [no content] (0): * Using Stream ID: 1 (easy handle 0x55bbc29d5690) * TLSv1.3 (OUT), TLS app data, [no content] (0): > POST /http-bind HTTP/2 > Host: zxkf.szrengjing.com > User-Agent: curl/7.61.1 > Accept: */* > Content-Type: text/xml > Content-Length: 67 > * TLSv1.3 (OUT), TLS app data, [no content] (0): * We are completely uploaded and fine * TLSv1.3 (IN), TLS handshake, [no content] (0): * TLSv1.3 (IN), TLS handshake, Newsession Ticket (4): * TLSv1.3 (IN), TLS handshake, [no content] (0): * TLSv1.3 (IN), TLS handshake, Newsession Ticket (4): * TLSv1.3 (IN), TLS app data, [no content] (0): * Connection state changed (MAX_CONCURRENT_STREAMS == 128)! * TLSv1.3 (OUT), TLS app data, [no content] (0): * TLSv1.3 (IN), TLS app data, [no content] (0): < HTTP/2 200 < server: nginx < date: Fri, 31 Oct 2025 09:23:14 GMT < content-type: text/xml;charset=utf-8 < content-length: 730 < access-control-allow-methods: CANCELUPLOAD, HEAD, MKCOL, UNCHECKOUT, POST, CHECKIN, CHECKOUT, PROPFIND, LOCK, VERSION-CONTROL, COPY, REPORT, OPTIONS, PUT, DELETE, GETLIB, MOVE, GET, UPDATE, PROPPATCH, UNLOCK < access-control-allow-headers: Destination, Overwrite, X-Requested-With, Cache-Control, X-File-Name, User-Agent, X-File-Size, If-Modified-Since, Depth, Content-Type < access-control-max-age: 86400 < vary: Accept-Encoding < set-cookie: server_name_session=30cfff002de8f66adfef6602044f67bf; Max-Age=86400; httponly; path=/ < set-cookie: SITE_TOTAL_ID=8a26e92882ea3ce1d1a1c8b0e22e54c1; Path=/; Max-Age=259200000; HttpOnly < strict-transport-security: max-age=31536000 < * Connection #0 to host zxkf.szrengjing.com left intact <body xmlns="http://jabber.org/protocol/httpbind" xmlns:stream="http://etherx.jabber.org/streams" from="localhost" authid="4jvalcpo6q" sid="4jvalcpo6q" secure="true" requests="2" inactivity="30" polling="5" wait="60"><stream:features><mechanisms xmlns="urn:ietf:params:xml:ns:xmpp-sasl"><mechanism>PLAIN</mechanism><mechanism>ANONYMOUS</mechanism><mechanism>SCRAM-SHA-1</mechanism><mechanism>CRAM-MD5</mechanism><mechanism>PADE</mechanism><mechanism>DIGEST-MD5</mechanism><mechanism>JIVE-SHAREDSECRET</mechanism></mechanisms><register xmlns="http://jabber.org/features/iq-register"/><bind xmlns="urn:ietf:params:xml:ns:xmpp-bind"/><session xmlns="urn:ietf:params:xml:ns:xmpp-session"><optional/></session></stream:features></body>[root@yfw szrengjing.com]# printf '\0%s\0%s' "test@zxkf.szrengjing.com" "test123" | base64 AHRlc3RAenhrZi5zenJlbmdqaW5nLmNvbQB0ZXN0MTIz [root@yfw szrengjing.com]# curl -v \ > -H "Content-Type: text/xml" \ > -d '<body rid="123456790" sid="a1b2c3d4e5" xmlns="http://jabber.org/protocol/httpbind"><auth xmlns="urn:ietf:params:xml:ns:xmpp-sasl" mechanism="PLAIN">AHRlc3RAenhrZi5zenJlbmdqaW5nLmNvbQB0ZXN0MTIz</auth></body>' \ > https://zxkf.szrengjing.com/http-bind * Trying 124.71.230.244... * TCP_NODELAY set * Connected to zxkf.szrengjing.com (124.71.230.244) port 443 (#0) * ALPN, offering h2 * ALPN, offering http/1.1 * successfully set certificate verify locations: * CAfile: /etc/pki/tls/certs/ca-bundle.crt CApath: none * TLSv1.3 (OUT), TLS handshake, Client hello (1): * TLSv1.3 (IN), TLS handshake, Server hello (2): * TLSv1.3 (IN), TLS handshake, [no content] (0): * TLSv1.3 (IN), TLS handshake, Encrypted Extensions (8): * TLSv1.3 (IN), TLS handshake, [no content] (0): * TLSv1.3 (IN), TLS handshake, Certificate (11): * TLSv1.3 (IN), TLS handshake, [no content] (0): * TLSv1.3 (IN), TLS handshake, CERT verify (15): * TLSv1.3 (IN), TLS handshake, [no content] (0): * TLSv1.3 (IN), TLS handshake, Finished (20): * TLSv1.3 (OUT), TLS change cipher, Change cipher spec (1): * TLSv1.3 (OUT), TLS handshake, [no content] (0): * TLSv1.3 (OUT), TLS handshake, Finished (20): * SSL connection using TLSv1.3 / TLS_AES_256_GCM_SHA384 * ALPN, server accepted to use h2 * Server certificate: * subject: CN=zxkf.szrengjing.com * start date: Oct 13 03:37:58 2025 GMT * expire date: Jan 11 03:37:57 2026 GMT * subjectAltName: host "zxkf.szrengjing.com" matched cert's "zxkf.szrengjing.com" * issuer: C=US; O=Let's Encrypt; CN=R12 * SSL certificate verify ok. * Using HTTP2, server supports multi-use * Connection state changed (HTTP/2 confirmed) * Copying HTTP/2 data in stream buffer to connection buffer after upgrade: len=0 * TLSv1.3 (OUT), TLS app data, [no content] (0): * TLSv1.3 (OUT), TLS app data, [no content] (0): * TLSv1.3 (OUT), TLS app data, [no content] (0): * Using Stream ID: 1 (easy handle 0x55d36269a690) * TLSv1.3 (OUT), TLS app data, [no content] (0): > POST /http-bind HTTP/2 > Host: zxkf.szrengjing.com > User-Agent: curl/7.61.1 > Accept: */* > Content-Type: text/xml > Content-Length: 206 > * TLSv1.3 (OUT), TLS app data, [no content] (0): * We are completely uploaded and fine * TLSv1.3 (IN), TLS handshake, [no content] (0): * TLSv1.3 (IN), TLS handshake, Newsession Ticket (4): * TLSv1.3 (IN), TLS handshake, [no content] (0): * TLSv1.3 (IN), TLS handshake, Newsession Ticket (4): * TLSv1.3 (IN), TLS app data, [no content] (0): * Connection state changed (MAX_CONCURRENT_STREAMS == 128)! * TLSv1.3 (OUT), TLS app data, [no content] (0): * TLSv1.3 (IN), TLS app data, [no content] (0): < HTTP/2 404 < server: nginx < date: Fri, 31 Oct 2025 09:24:02 GMT < content-type: text/html;charset=iso-8859-1 < content-length: 447 < access-control-allow-methods: CANCELUPLOAD, HEAD, MKCOL, UNCHECKOUT, POST, CHECKIN, CHECKOUT, PROPFIND, LOCK, VERSION-CONTROL, COPY, REPORT, OPTIONS, PUT, DELETE, GETLIB, MOVE, GET, UPDATE, PROPPATCH, UNLOCK < access-control-allow-headers: Destination, Overwrite, X-Requested-With, Cache-Control, X-File-Name, User-Agent, X-File-Size, If-Modified-Since, Depth, Content-Type < access-control-max-age: 86400 < cache-control: must-revalidate,no-cache,no-store < set-cookie: server_name_session=30cfff002de8f66adfef6602044f67bf; Max-Age=86400; httponly; path=/ < set-cookie: SITE_TOTAL_ID=8001a74e1830d2161a1cf7c26ef85177; Path=/; Max-Age=259200000; HttpOnly < <html> <head> <meta http-equiv="Content-Type" content="text/html;charset=ISO-8859-1"/> <title>Error 404 Invalid SID value.</title> </head> <body><h2>HTTP ERROR 404 Invalid SID value.</h2> <table> <tr><th>URI:</th><td>/http-bind</td></tr> <tr><th>STATUS:</th><td>404</td></tr> <tr><th>MESSAGE:</th><td>Invalid SID value.</td></tr> <tr><th>SERVLET:</th><td>org.jivesoftware.openfire.http.HttpBindServlet-5d6deb83</td></tr> </table> </body> </html> * Connection #0 to host zxkf.szrengjing.com left intact [root@yfw szrengjing.com]# curl -v \ > -H "Content-Type: text/xml" \ > -d '<body rid="123456791" sid="a1b2c3d4e5" xmlns="http://jabber.org/protocol/httpbind"/>' \ > https://zxkf.szrengjing.com/http-bind * Trying 124.71.230.244... * TCP_NODELAY set * Connected to zxkf.szrengjing.com (124.71.230.244) port 443 (#0) * ALPN, offering h2 * ALPN, offering http/1.1 * successfully set certificate verify locations: * CAfile: /etc/pki/tls/certs/ca-bundle.crt CApath: none * TLSv1.3 (OUT), TLS handshake, Client hello (1): * TLSv1.3 (IN), TLS handshake, Server hello (2): * TLSv1.3 (IN), TLS handshake, [no content] (0): * TLSv1.3 (IN), TLS handshake, Encrypted Extensions (8): * TLSv1.3 (IN), TLS handshake, [no content] (0): * TLSv1.3 (IN), TLS handshake, Certificate (11): * TLSv1.3 (IN), TLS handshake, [no content] (0): * TLSv1.3 (IN), TLS handshake, CERT verify (15): * TLSv1.3 (IN), TLS handshake, [no content] (0): * TLSv1.3 (IN), TLS handshake, Finished (20): * TLSv1.3 (OUT), TLS change cipher, Change cipher spec (1): * TLSv1.3 (OUT), TLS handshake, [no content] (0): * TLSv1.3 (OUT), TLS handshake, Finished (20): * SSL connection using TLSv1.3 / TLS_AES_256_GCM_SHA384 * ALPN, server accepted to use h2 * Server certificate: * subject: CN=zxkf.szrengjing.com * start date: Oct 13 03:37:58 2025 GMT * expire date: Jan 11 03:37:57 2026 GMT * subjectAltName: host "zxkf.szrengjing.com" matched cert's "zxkf.szrengjing.com" * issuer: C=US; O=Let's Encrypt; CN=R12 * SSL certificate verify ok. * Using HTTP2, server supports multi-use * Connection state changed (HTTP/2 confirmed) * Copying HTTP/2 data in stream buffer to connection buffer after upgrade: len=0 * TLSv1.3 (OUT), TLS app data, [no content] (0): * TLSv1.3 (OUT), TLS app data, [no content] (0): * TLSv1.3 (OUT), TLS app data, [no content] (0): * Using Stream ID: 1 (easy handle 0x558a00b18690) * TLSv1.3 (OUT), TLS app data, [no content] (0): > POST /http-bind HTTP/2 > Host: zxkf.szrengjing.com > User-Agent: curl/7.61.1 > Accept: */* > Content-Type: text/xml > Content-Length: 84 > * TLSv1.3 (OUT), TLS app data, [no content] (0): * We are completely uploaded and fine * TLSv1.3 (IN), TLS handshake, [no content] (0): * TLSv1.3 (IN), TLS handshake, Newsession Ticket (4): * TLSv1.3 (IN), TLS handshake, [no content] (0): * TLSv1.3 (IN), TLS handshake, Newsession Ticket (4): * TLSv1.3 (IN), TLS app data, [no content] (0): * Connection state changed (MAX_CONCURRENT_STREAMS == 128)! * TLSv1.3 (OUT), TLS app data, [no content] (0): * TLSv1.3 (IN), TLS app data, [no content] (0): < HTTP/2 404 < server: nginx < date: Fri, 31 Oct 2025 09:24:31 GMT < content-type: text/html;charset=iso-8859-1 < content-length: 447 < access-control-allow-methods: CANCELUPLOAD, HEAD, MKCOL, UNCHECKOUT, POST, CHECKIN, CHECKOUT, PROPFIND, LOCK, VERSION-CONTROL, COPY, REPORT, OPTIONS, PUT, DELETE, GETLIB, MOVE, GET, UPDATE, PROPPATCH, UNLOCK < access-control-allow-headers: Destination, Overwrite, X-Requested-With, Cache-Control, X-File-Name, User-Agent, X-File-Size, If-Modified-Since, Depth, Content-Type < access-control-max-age: 86400 < cache-control: must-revalidate,no-cache,no-store < set-cookie: server_name_session=30cfff002de8f66adfef6602044f67bf; Max-Age=86400; httponly; path=/ < set-cookie: SITE_TOTAL_ID=28ed8155ee72e0f4550b47cf2835a543; Path=/; Max-Age=259200000; HttpOnly < <html> <head> <meta http-equiv="Content-Type" content="text/html;charset=ISO-8859-1"/> <title>Error 404 Invalid SID value.</title> </head> <body><h2>HTTP ERROR 404 Invalid SID value.</h2> <table> <tr><th>URI:</th><td>/http-bind</td></tr> <tr><th>STATUS:</th><td>404</td></tr> <tr><th>MESSAGE:</th><td>Invalid SID value.</td></tr> <tr><th>SERVLET:</th><td>org.jivesoftware.openfire.http.HttpBindServlet-5d6deb83</td></tr> </table> </body> </html> * Connection #0 to host zxkf.szrengjing.com left intact [root@yfw szrengjing.com]# curl -v \ > -H "Content-Type: text/xml" \ > -d '<body rid="123456792" sid="a1b2c3d4e5" xmlns="http://jabber.org/protocol/httpbind"><iq type="set" id="bind_1"><bind xmlns="urn:ietf:params:xml:ns:xmpp-bind"/></iq></body>' \ > https://zxkf.szrengjing.com/http-bind * Trying 124.71.230.244... * TCP_NODELAY set * Connected to zxkf.szrengjing.com (124.71.230.244) port 443 (#0) * ALPN, offering h2 * ALPN, offering http/1.1 * successfully set certificate verify locations: * CAfile: /etc/pki/tls/certs/ca-bundle.crt CApath: none * TLSv1.3 (OUT), TLS handshake, Client hello (1): * TLSv1.3 (IN), TLS handshake, Server hello (2): * TLSv1.3 (IN), TLS handshake, [no content] (0): * TLSv1.3 (IN), TLS handshake, Encrypted Extensions (8): * TLSv1.3 (IN), TLS handshake, [no content] (0): * TLSv1.3 (IN), TLS handshake, Certificate (11): * TLSv1.3 (IN), TLS handshake, [no content] (0): * TLSv1.3 (IN), TLS handshake, CERT verify (15): * TLSv1.3 (IN), TLS handshake, [no content] (0): * TLSv1.3 (IN), TLS handshake, Finished (20): * TLSv1.3 (OUT), TLS change cipher, Change cipher spec (1): * TLSv1.3 (OUT), TLS handshake, [no content] (0): * TLSv1.3 (OUT), TLS handshake, Finished (20): * SSL connection using TLSv1.3 / TLS_AES_256_GCM_SHA384 * ALPN, server accepted to use h2 * Server certificate: * subject: CN=zxkf.szrengjing.com * start date: Oct 13 03:37:58 2025 GMT * expire date: Jan 11 03:37:57 2026 GMT * subjectAltName: host "zxkf.szrengjing.com" matched cert's "zxkf.szrengjing.com" * issuer: C=US; O=Let's Encrypt; CN=R12 * SSL certificate verify ok. * Using HTTP2, server supports multi-use * Connection state changed (HTTP/2 confirmed) * Copying HTTP/2 data in stream buffer to connection buffer after upgrade: len=0 * TLSv1.3 (OUT), TLS app data, [no content] (0): * TLSv1.3 (OUT), TLS app data, [no content] (0): * TLSv1.3 (OUT), TLS app data, [no content] (0): * Using Stream ID: 1 (easy handle 0x55f336fc2690) * TLSv1.3 (OUT), TLS app data, [no content] (0): > POST /http-bind HTTP/2 > Host: zxkf.szrengjing.com > User-Agent: curl/7.61.1 > Accept: */* > Content-Type: text/xml > Content-Length: 170 > * TLSv1.3 (OUT), TLS app data, [no content] (0): * We are completely uploaded and fine * TLSv1.3 (IN), TLS handshake, [no content] (0): * TLSv1.3 (IN), TLS handshake, Newsession Ticket (4): * TLSv1.3 (IN), TLS handshake, [no content] (0): * TLSv1.3 (IN), TLS handshake, Newsession Ticket (4): * TLSv1.3 (IN), TLS app data, [no content] (0): * Connection state changed (MAX_CONCURRENT_STREAMS == 128)! * TLSv1.3 (OUT), TLS app data, [no content] (0): * TLSv1.3 (IN), TLS app data, [no content] (0): < HTTP/2 404 < server: nginx < date: Fri, 31 Oct 2025 09:24:46 GMT < content-type: text/html;charset=iso-8859-1 < content-length: 447 < access-control-allow-methods: CANCELUPLOAD, HEAD, MKCOL, UNCHECKOUT, POST, CHECKIN, CHECKOUT, PROPFIND, LOCK, VERSION-CONTROL, COPY, REPORT, OPTIONS, PUT, DELETE, GETLIB, MOVE, GET, UPDATE, PROPPATCH, UNLOCK < access-control-allow-headers: Destination, Overwrite, X-Requested-With, Cache-Control, X-File-Name, User-Agent, X-File-Size, If-Modified-Since, Depth, Content-Type < access-control-max-age: 86400 < cache-control: must-revalidate,no-cache,no-store < set-cookie: server_name_session=30cfff002de8f66adfef6602044f67bf; Max-Age=86400; httponly; path=/ < set-cookie: SITE_TOTAL_ID=09c959972fc00b5d57116d6bffb455a6; Path=/; Max-Age=259200000; HttpOnly < <html> <head> <meta http-equiv="Content-Type" content="text/html;charset=ISO-8859-1"/> <title>Error 404 Invalid SID value.</title> </head> <body><h2>HTTP ERROR 404 Invalid SID value.</h2> <table> <tr><th>URI:</th><td>/http-bind</td></tr> <tr><th>STATUS:</th><td>404</td></tr> <tr><th>MESSAGE:</th><td>Invalid SID value.</td></tr> <tr><th>SERVLET:</th><td>org.jivesoftware.openfire.http.HttpBindServlet-5d6deb83</td></tr> </table> </body> </html> * Connection #0 to host zxkf.szrengjing.com left intact [root@yfw szrengjing.com]# curl -v \ > -H "Content-Type: text/xml" \ > -d '<body rid="123456793" sid="a1b2c3d4e5" xmlns="http://jabber.org/protocol/httpbind"><iq type="set" id="sess_1"><session xmlns="urn:ietf:params:xml:ns:xmpp-session"/></iq></body>' \ > https://zxkf.szrengjing.com/http-bind * Trying 124.71.230.244... * TCP_NODELAY set * Connected to zxkf.szrengjing.com (124.71.230.244) port 443 (#0) * ALPN, offering h2 * ALPN, offering http/1.1 * successfully set certificate verify locations: * CAfile: /etc/pki/tls/certs/ca-bundle.crt CApath: none * TLSv1.3 (OUT), TLS handshake, Client hello (1): * TLSv1.3 (IN), TLS handshake, Server hello (2): * TLSv1.3 (IN), TLS handshake, [no content] (0): * TLSv1.3 (IN), TLS handshake, Encrypted Extensions (8): * TLSv1.3 (IN), TLS handshake, [no content] (0): * TLSv1.3 (IN), TLS handshake, Certificate (11): * TLSv1.3 (IN), TLS handshake, [no content] (0): * TLSv1.3 (IN), TLS handshake, CERT verify (15): * TLSv1.3 (IN), TLS handshake, [no content] (0): * TLSv1.3 (IN), TLS handshake, Finished (20): * TLSv1.3 (OUT), TLS change cipher, Change cipher spec (1): * TLSv1.3 (OUT), TLS handshake, [no content] (0): * TLSv1.3 (OUT), TLS handshake, Finished (20): * SSL connection using TLSv1.3 / TLS_AES_256_GCM_SHA384 * ALPN, server accepted to use h2 * Server certificate: * subject: CN=zxkf.szrengjing.com * start date: Oct 13 03:37:58 2025 GMT * expire date: Jan 11 03:37:57 2026 GMT * subjectAltName: host "zxkf.szrengjing.com" matched cert's "zxkf.szrengjing.com" * issuer: C=US; O=Let's Encrypt; CN=R12 * SSL certificate verify ok. * Using HTTP2, server supports multi-use * Connection state changed (HTTP/2 confirmed) * Copying HTTP/2 data in stream buffer to connection buffer after upgrade: len=0 * TLSv1.3 (OUT), TLS app data, [no content] (0): * TLSv1.3 (OUT), TLS app data, [no content] (0): * TLSv1.3 (OUT), TLS app data, [no content] (0): * Using Stream ID: 1 (easy handle 0x56369a9f5690) * TLSv1.3 (OUT), TLS app data, [no content] (0): > POST /http-bind HTTP/2 > Host: zxkf.szrengjing.com > User-Agent: curl/7.61.1 > Accept: */* > Content-Type: text/xml > Content-Length: 176 > * TLSv1.3 (OUT), TLS app data, [no content] (0): * We are completely uploaded and fine * TLSv1.3 (IN), TLS handshake, [no content] (0): * TLSv1.3 (IN), TLS handshake, Newsession Ticket (4): * TLSv1.3 (IN), TLS handshake, [no content] (0): * TLSv1.3 (IN), TLS handshake, Newsession Ticket (4): * TLSv1.3 (IN), TLS app data, [no content] (0): * Connection state changed (MAX_CONCURRENT_STREAMS == 128)! * TLSv1.3 (OUT), TLS app data, [no content] (0): * TLSv1.3 (IN), TLS app data, [no content] (0): < HTTP/2 404 < server: nginx < date: Fri, 31 Oct 2025 09:25:06 GMT < content-type: text/html;charset=iso-8859-1 < content-length: 447 < access-control-allow-methods: CANCELUPLOAD, HEAD, MKCOL, UNCHECKOUT, POST, CHECKIN, CHECKOUT, PROPFIND, LOCK, VERSION-CONTROL, COPY, REPORT, OPTIONS, PUT, DELETE, GETLIB, MOVE, GET, UPDATE, PROPPATCH, UNLOCK < access-control-allow-headers: Destination, Overwrite, X-Requested-With, Cache-Control, X-File-Name, User-Agent, X-File-Size, If-Modified-Since, Depth, Content-Type < access-control-max-age: 86400 < cache-control: must-revalidate,no-cache,no-store < set-cookie: server_name_session=30cfff002de8f66adfef6602044f67bf; Max-Age=86400; httponly; path=/ < set-cookie: SITE_TOTAL_ID=177678c324d873e91d28df54dde6921d; Path=/; Max-Age=259200000; HttpOnly < <html> <head> <meta http-equiv="Content-Type" content="text/html;charset=ISO-8859-1"/> <title>Error 404 Invalid SID value.</title> </head> <body><h2>HTTP ERROR 404 Invalid SID value.</h2> <table> <tr><th>URI:</th><td>/http-bind</td></tr> <tr><th>STATUS:</th><td>404</td></tr> <tr><th>MESSAGE:</th><td>Invalid SID value.</td></tr> <tr><th>SERVLET:</th><td>org.jivesoftware.openfire.http.HttpBindServlet-5d6deb83</td></tr> </table> </body> </html> * Connection #0 to host zxkf.szrengjing.com left intact [root@yfw szrengjing.com]# curl -v \ > -H "Content-Type: text/xml" \ > -d '<body rid="123456794" sid="a1b2c3d4e5" xmlns="http://jabber.org/protocol/httpbind"><presence/></body>' \ > https://zxkf.szrengjing.com/http-bind * Trying 124.71.230.244... * TCP_NODELAY set * Connected to zxkf.szrengjing.com (124.71.230.244) port 443 (#0) * ALPN, offering h2 * ALPN, offering http/1.1 * successfully set certificate verify locations: * CAfile: /etc/pki/tls/certs/ca-bundle.crt CApath: none * TLSv1.3 (OUT), TLS handshake, Client hello (1): * TLSv1.3 (IN), TLS handshake, Server hello (2): * TLSv1.3 (IN), TLS handshake, [no content] (0): * TLSv1.3 (IN), TLS handshake, Encrypted Extensions (8): * TLSv1.3 (IN), TLS handshake, [no content] (0): * TLSv1.3 (IN), TLS handshake, Certificate (11): * TLSv1.3 (IN), TLS handshake, [no content] (0): * TLSv1.3 (IN), TLS handshake, CERT verify (15): * TLSv1.3 (IN), TLS handshake, [no content] (0): * TLSv1.3 (IN), TLS handshake, Finished (20): * TLSv1.3 (OUT), TLS change cipher, Change cipher spec (1): * TLSv1.3 (OUT), TLS handshake, [no content] (0): * TLSv1.3 (OUT), TLS handshake, Finished (20): * SSL connection using TLSv1.3 / TLS_AES_256_GCM_SHA384 * ALPN, server accepted to use h2 * Server certificate: * subject: CN=zxkf.szrengjing.com * start date: Oct 13 03:37:58 2025 GMT * expire date: Jan 11 03:37:57 2026 GMT * subjectAltName: host "zxkf.szrengjing.com" matched cert's "zxkf.szrengjing.com" * issuer: C=US; O=Let's Encrypt; CN=R12 * SSL certificate verify ok. * Using HTTP2, server supports multi-use * Connection state changed (HTTP/2 confirmed) * Copying HTTP/2 data in stream buffer to connection buffer after upgrade: len=0 * TLSv1.3 (OUT), TLS app data, [no content] (0): * TLSv1.3 (OUT), TLS app data, [no content] (0): * TLSv1.3 (OUT), TLS app data, [no content] (0): * Using Stream ID: 1 (easy handle 0x557eb0e85690) * TLSv1.3 (OUT), TLS app data, [no content] (0): > POST /http-bind HTTP/2 > Host: zxkf.szrengjing.com > User-Agent: curl/7.61.1 > Accept: */* > Content-Type: text/xml > Content-Length: 101 > * TLSv1.3 (OUT), TLS app data, [no content] (0): * We are completely uploaded and fine * TLSv1.3 (IN), TLS handshake, [no content] (0): * TLSv1.3 (IN), TLS handshake, Newsession Ticket (4): * TLSv1.3 (IN), TLS handshake, [no content] (0): * TLSv1.3 (IN), TLS handshake, Newsession Ticket (4): * TLSv1.3 (IN), TLS app data, [no content] (0): * Connection state changed (MAX_CONCURRENT_STREAMS == 128)! * TLSv1.3 (OUT), TLS app data, [no content] (0): * TLSv1.3 (IN), TLS app data, [no content] (0): < HTTP/2 404 < server: nginx < date: Fri, 31 Oct 2025 09:25:24 GMT < content-type: text/html;charset=iso-8859-1 < content-length: 447 < access-control-allow-methods: CANCELUPLOAD, HEAD, MKCOL, UNCHECKOUT, POST, CHECKIN, CHECKOUT, PROPFIND, LOCK, VERSION-CONTROL, COPY, REPORT, OPTIONS, PUT, DELETE, GETLIB, MOVE, GET, UPDATE, PROPPATCH, UNLOCK < access-control-allow-headers: Destination, Overwrite, X-Requested-With, Cache-Control, X-File-Name, User-Agent, X-File-Size, If-Modified-Since, Depth, Content-Type < access-control-max-age: 86400 < cache-control: must-revalidate,no-cache,no-store < set-cookie: server_name_session=30cfff002de8f66adfef6602044f67bf; Max-Age=86400; httponly; path=/ < set-cookie: SITE_TOTAL_ID=a36bf08bc57f691dfd4687608744f2e2; Path=/; Max-Age=259200000; HttpOnly < <html> <head> <meta http-equiv="Content-Type" content="text/html;charset=ISO-8859-1"/> <title>Error 404 Invalid SID value.</title> </head> <body><h2>HTTP ERROR 404 Invalid SID value.</h2> <table> <tr><th>URI:</th><td>/http-bind</td></tr> <tr><th>STATUS:</th><td>404</td></tr> <tr><th>MESSAGE:</th><td>Invalid SID value.</td></tr> <tr><th>SERVLET:</th><td>org.jivesoftware.openfire.http.HttpBindServlet-5d6deb83</td></tr> </table> </body> </html> * Connection #0 to host zxkf.szrengjing.com left intact [root@yfw szrengjing.com]#
最新发布
11-01
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值